rails-graphql 0.2.1 → 1.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (315) hide show
  1. checksums.yaml +4 -4
  2. data/ext/console.rb +18 -0
  3. data/ext/extconf.h +3 -0
  4. data/ext/extconf.rb +1 -54
  5. data/ext/gql_parser.c +631 -0
  6. data/ext/gql_parser.h +21 -0
  7. data/ext/shared.c +477 -0
  8. data/ext/shared.h +177 -0
  9. data/lib/generators/graphql/channel_generator.rb +27 -0
  10. data/lib/generators/graphql/controller_generator.rb +9 -4
  11. data/lib/generators/graphql/install_generator.rb +49 -0
  12. data/lib/generators/graphql/schema_generator.rb +9 -4
  13. data/lib/generators/graphql/templates/channel.erb +7 -0
  14. data/lib/generators/graphql/templates/config.rb +97 -0
  15. data/lib/generators/graphql/templates/controller.erb +2 -0
  16. data/lib/generators/graphql/templates/schema.erb +5 -3
  17. data/lib/gql_parser.so +0 -0
  18. data/lib/rails/graphql/adapters/mysql_adapter.rb +59 -0
  19. data/lib/rails/graphql/adapters/pg_adapter.rb +25 -22
  20. data/lib/rails/graphql/adapters/sqlite_adapter.rb +17 -14
  21. data/lib/rails/graphql/alternative/field_set.rb +48 -0
  22. data/lib/rails/graphql/alternative/mutation.rb +17 -0
  23. data/lib/rails/graphql/alternative/query.rb +98 -0
  24. data/lib/rails/graphql/alternative/subscription.rb +18 -0
  25. data/lib/rails/graphql/alternative.rb +20 -0
  26. data/lib/rails/graphql/argument.rb +25 -26
  27. data/lib/rails/graphql/callback.rb +30 -14
  28. data/lib/rails/graphql/collectors/hash_collector.rb +26 -7
  29. data/lib/rails/graphql/collectors/idented_collector.rb +10 -7
  30. data/lib/rails/graphql/collectors/json_collector.rb +43 -17
  31. data/lib/rails/graphql/collectors.rb +4 -4
  32. data/lib/rails/graphql/config.rb +154 -23
  33. data/lib/rails/graphql/directive/cached_directive.rb +33 -0
  34. data/lib/rails/graphql/directive/deprecated_directive.rb +10 -10
  35. data/lib/rails/graphql/directive/include_directive.rb +4 -4
  36. data/lib/rails/graphql/directive/skip_directive.rb +4 -4
  37. data/lib/rails/graphql/directive/specified_by_directive.rb +24 -0
  38. data/lib/rails/graphql/directive.rb +134 -73
  39. data/lib/rails/graphql/errors.rb +33 -4
  40. data/lib/rails/graphql/event.rb +21 -9
  41. data/lib/rails/graphql/field/authorized_field.rb +17 -6
  42. data/lib/rails/graphql/field/input_field.rb +8 -12
  43. data/lib/rails/graphql/field/mutation_field.rb +43 -9
  44. data/lib/rails/graphql/field/output_field.rb +112 -12
  45. data/lib/rails/graphql/field/proxied_field.rb +35 -26
  46. data/lib/rails/graphql/field/resolved_field.rb +27 -25
  47. data/lib/rails/graphql/field/scoped_config.rb +10 -4
  48. data/lib/rails/graphql/field/subscription_field.rb +123 -0
  49. data/lib/rails/graphql/field/typed_field.rb +69 -24
  50. data/lib/rails/graphql/field.rb +89 -74
  51. data/lib/rails/graphql/global_id.rb +89 -0
  52. data/lib/rails/graphql/helpers/attribute_delegator.rb +5 -5
  53. data/lib/rails/graphql/helpers/inherited_collection/array.rb +51 -0
  54. data/lib/rails/graphql/helpers/inherited_collection/base.rb +45 -0
  55. data/lib/rails/graphql/helpers/inherited_collection/hash.rb +88 -0
  56. data/lib/rails/graphql/helpers/inherited_collection.rb +25 -76
  57. data/lib/rails/graphql/helpers/instantiable.rb +15 -0
  58. data/lib/rails/graphql/helpers/leaf_from_ar.rb +7 -7
  59. data/lib/rails/graphql/helpers/registerable.rb +44 -62
  60. data/lib/rails/graphql/helpers/unregisterable.rb +16 -0
  61. data/lib/rails/graphql/helpers/with_arguments.rb +33 -28
  62. data/lib/rails/graphql/helpers/with_assignment.rb +6 -6
  63. data/lib/rails/graphql/helpers/with_callbacks.rb +28 -11
  64. data/lib/rails/graphql/helpers/with_description.rb +73 -0
  65. data/lib/rails/graphql/helpers/with_directives.rb +58 -30
  66. data/lib/rails/graphql/helpers/with_events.rb +22 -23
  67. data/lib/rails/graphql/helpers/with_fields.rb +86 -26
  68. data/lib/rails/graphql/helpers/with_global_id.rb +22 -0
  69. data/lib/rails/graphql/helpers/with_name.rb +44 -0
  70. data/lib/rails/graphql/helpers/with_namespace.rb +7 -4
  71. data/lib/rails/graphql/helpers/with_owner.rb +8 -7
  72. data/lib/rails/graphql/helpers/with_schema_fields.rb +162 -56
  73. data/lib/rails/graphql/helpers/with_validator.rb +9 -9
  74. data/lib/rails/graphql/helpers.rb +10 -3
  75. data/lib/rails/graphql/introspection.rb +43 -36
  76. data/lib/rails/graphql/railtie.rb +89 -33
  77. data/lib/rails/graphql/railties/app/base_channel.rb +10 -0
  78. data/lib/rails/graphql/railties/app/base_controller.rb +12 -0
  79. data/lib/rails/graphql/railties/app/views/_cable.js.erb +56 -0
  80. data/lib/rails/graphql/railties/app/views/_fetch.js.erb +20 -0
  81. data/lib/rails/graphql/railties/app/views/graphiql.html.erb +101 -0
  82. data/lib/rails/graphql/railties/base_generator.rb +5 -17
  83. data/lib/rails/graphql/railties/channel.rb +157 -0
  84. data/lib/rails/graphql/railties/controller.rb +91 -25
  85. data/lib/rails/graphql/railties/controller_runtime.rb +5 -5
  86. data/lib/rails/graphql/railties/log_subscriber.rb +81 -14
  87. data/lib/rails/graphql/request/arguments.rb +26 -50
  88. data/lib/rails/graphql/request/backtrace.rb +212 -0
  89. data/lib/rails/graphql/request/component/field.rb +98 -70
  90. data/lib/rails/graphql/request/component/fragment.rb +80 -26
  91. data/lib/rails/graphql/request/component/operation/subscription.rb +162 -4
  92. data/lib/rails/graphql/request/component/operation.rb +73 -34
  93. data/lib/rails/graphql/request/component/spread.rb +79 -27
  94. data/lib/rails/graphql/request/component/typename.rb +28 -13
  95. data/lib/rails/graphql/request/component.rb +77 -36
  96. data/lib/rails/graphql/request/context.rb +19 -9
  97. data/lib/rails/graphql/request/errors.rb +16 -6
  98. data/lib/rails/graphql/request/event.rb +23 -8
  99. data/lib/rails/graphql/request/helpers/directives.rb +69 -27
  100. data/lib/rails/graphql/request/helpers/selection_set.rb +57 -25
  101. data/lib/rails/graphql/request/helpers/value_writers.rb +24 -19
  102. data/lib/rails/graphql/request/prepared_data.rb +100 -0
  103. data/lib/rails/graphql/request/steps/authorizable.rb +24 -14
  104. data/lib/rails/graphql/request/steps/organizable.rb +111 -49
  105. data/lib/rails/graphql/request/steps/{prepareable.rb → preparable.rb} +21 -8
  106. data/lib/rails/graphql/request/steps/{resolveable.rb → resolvable.rb} +16 -7
  107. data/lib/rails/graphql/request/strategy/cached_strategy.rb +64 -0
  108. data/lib/rails/graphql/request/strategy/dynamic_instance.rb +6 -6
  109. data/lib/rails/graphql/request/strategy/multi_query_strategy.rb +6 -13
  110. data/lib/rails/graphql/request/strategy/sequenced_strategy.rb +9 -9
  111. data/lib/rails/graphql/request/strategy.rb +147 -77
  112. data/lib/rails/graphql/request/subscription.rb +82 -0
  113. data/lib/rails/graphql/request.rb +353 -104
  114. data/lib/rails/graphql/schema.rb +251 -106
  115. data/lib/rails/graphql/shortcuts.rb +33 -8
  116. data/lib/rails/graphql/source/active_record/builders.rb +64 -51
  117. data/lib/rails/graphql/source/active_record_source.rb +158 -82
  118. data/lib/rails/graphql/source/base.rb +83 -0
  119. data/lib/rails/graphql/source/builder.rb +115 -0
  120. data/lib/rails/graphql/source/scoped_arguments.rb +39 -21
  121. data/lib/rails/graphql/source.rb +90 -228
  122. data/lib/rails/graphql/subscription/provider/action_cable.rb +113 -0
  123. data/lib/rails/graphql/subscription/provider/base.rb +192 -0
  124. data/lib/rails/graphql/subscription/provider.rb +18 -0
  125. data/lib/rails/graphql/subscription/store/base.rb +141 -0
  126. data/lib/rails/graphql/subscription/store/memory.rb +136 -0
  127. data/lib/rails/graphql/subscription/store.rb +19 -0
  128. data/lib/rails/graphql/subscription.rb +17 -0
  129. data/lib/rails/graphql/to_gql.rb +29 -32
  130. data/lib/rails/graphql/type/creator.rb +196 -0
  131. data/lib/rails/graphql/type/enum/directive_location_enum.rb +11 -11
  132. data/lib/rails/graphql/type/enum/type_kind_enum.rb +3 -3
  133. data/lib/rails/graphql/type/enum.rb +44 -50
  134. data/lib/rails/graphql/type/input.rb +92 -25
  135. data/lib/rails/graphql/type/interface.rb +29 -28
  136. data/lib/rails/graphql/type/object/directive_object.rb +10 -9
  137. data/lib/rails/graphql/type/object/enum_value_object.rb +3 -3
  138. data/lib/rails/graphql/type/object/field_object.rb +24 -6
  139. data/lib/rails/graphql/type/object/input_value_object.rb +6 -7
  140. data/lib/rails/graphql/type/object/schema_object.rb +5 -8
  141. data/lib/rails/graphql/type/object/type_object.rb +62 -25
  142. data/lib/rails/graphql/type/object.rb +34 -26
  143. data/lib/rails/graphql/type/scalar/any_scalar.rb +30 -0
  144. data/lib/rails/graphql/type/scalar/bigint_scalar.rb +5 -5
  145. data/lib/rails/graphql/type/scalar/binary_scalar.rb +5 -3
  146. data/lib/rails/graphql/type/scalar/boolean_scalar.rb +8 -8
  147. data/lib/rails/graphql/type/scalar/date_scalar.rb +5 -3
  148. data/lib/rails/graphql/type/scalar/date_time_scalar.rb +5 -3
  149. data/lib/rails/graphql/type/scalar/decimal_scalar.rb +5 -3
  150. data/lib/rails/graphql/type/scalar/float_scalar.rb +5 -5
  151. data/lib/rails/graphql/type/scalar/id_scalar.rb +6 -5
  152. data/lib/rails/graphql/type/scalar/int_scalar.rb +6 -5
  153. data/lib/rails/graphql/type/scalar/json_scalar.rb +41 -0
  154. data/lib/rails/graphql/type/scalar/string_scalar.rb +18 -4
  155. data/lib/rails/graphql/type/scalar/time_scalar.rb +8 -6
  156. data/lib/rails/graphql/type/scalar.rb +26 -23
  157. data/lib/rails/graphql/type/union.rb +21 -18
  158. data/lib/rails/graphql/type.rb +43 -26
  159. data/lib/rails/graphql/type_map.rb +268 -165
  160. data/lib/rails/graphql/uri.rb +167 -0
  161. data/lib/rails/graphql/version.rb +19 -3
  162. data/lib/rails/graphql.rake +3 -0
  163. data/lib/rails/graphql.rb +91 -56
  164. data/lib/rails-graphql.rb +1 -1
  165. data/test/assets/en.yml +29 -0
  166. data/test/assets/introspection-mem.txt +1 -1
  167. data/test/assets/introspection.gql +2 -0
  168. data/test/assets/mem.gql +86 -99
  169. data/test/assets/mysql.gql +406 -0
  170. data/test/assets/sqlite.gql +96 -73
  171. data/test/assets/translate.gql +346 -0
  172. data/test/config.rb +19 -8
  173. data/test/graphql/schema_test.rb +14 -50
  174. data/test/graphql/source_test.rb +8 -85
  175. data/test/graphql/type/enum_test.rb +207 -203
  176. data/test/graphql/type/input_test.rb +14 -9
  177. data/test/graphql/type/interface_test.rb +12 -9
  178. data/test/graphql/type/object_test.rb +8 -2
  179. data/test/graphql/type/scalar/any_scalar_test.rb +38 -0
  180. data/test/graphql/type/scalar/boolean_scalar_test.rb +6 -3
  181. data/test/graphql/type/scalar/json_scalar_test.rb +23 -0
  182. data/test/graphql/type_map_test.rb +63 -81
  183. data/test/graphql/type_test.rb +0 -19
  184. data/test/graphql_test.rb +1 -1
  185. data/test/integration/{authorization/authorization_test.rb → authorization_test.rb} +40 -14
  186. data/test/integration/config.rb +36 -3
  187. data/test/integration/customization_test.rb +39 -0
  188. data/test/integration/global_id_test.rb +99 -0
  189. data/test/integration/memory/star_wars_introspection_test.rb +24 -16
  190. data/test/integration/memory/star_wars_query_test.rb +54 -3
  191. data/test/integration/memory/star_wars_validation_test.rb +3 -3
  192. data/test/integration/mysql/star_wars_introspection_test.rb +25 -0
  193. data/test/integration/persisted_query_test.rb +87 -0
  194. data/test/integration/resolver_precedence_test.rb +154 -0
  195. data/test/integration/schemas/memory.rb +24 -10
  196. data/test/integration/schemas/mysql.rb +62 -0
  197. data/test/integration/schemas/sqlite.rb +21 -12
  198. data/test/integration/sqlite/star_wars_global_id_test.rb +89 -0
  199. data/test/integration/sqlite/star_wars_introspection_test.rb +10 -0
  200. data/test/integration/sqlite/star_wars_query_test.rb +14 -1
  201. data/test/integration/translate_test.rb +73 -0
  202. data/test/test_ext.rb +16 -13
  203. metadata +125 -161
  204. data/ext/depend +0 -3
  205. data/ext/graphqlparser/Ast.cpp +0 -346
  206. data/ext/graphqlparser/Ast.h +0 -1214
  207. data/ext/graphqlparser/AstNode.h +0 -36
  208. data/ext/graphqlparser/AstVisitor.h +0 -137
  209. data/ext/graphqlparser/GraphQLParser.cpp +0 -76
  210. data/ext/graphqlparser/GraphQLParser.h +0 -55
  211. data/ext/graphqlparser/JsonVisitor.cpp +0 -161
  212. data/ext/graphqlparser/JsonVisitor.cpp.inc +0 -456
  213. data/ext/graphqlparser/JsonVisitor.h +0 -121
  214. data/ext/graphqlparser/JsonVisitor.h.inc +0 -110
  215. data/ext/graphqlparser/VERSION +0 -1
  216. data/ext/graphqlparser/c/GraphQLAst.cpp +0 -324
  217. data/ext/graphqlparser/c/GraphQLAst.h +0 -180
  218. data/ext/graphqlparser/c/GraphQLAstForEachConcreteType.h +0 -44
  219. data/ext/graphqlparser/c/GraphQLAstNode.cpp +0 -25
  220. data/ext/graphqlparser/c/GraphQLAstNode.h +0 -33
  221. data/ext/graphqlparser/c/GraphQLAstToJSON.cpp +0 -21
  222. data/ext/graphqlparser/c/GraphQLAstToJSON.h +0 -24
  223. data/ext/graphqlparser/c/GraphQLAstVisitor.cpp +0 -55
  224. data/ext/graphqlparser/c/GraphQLAstVisitor.h +0 -53
  225. data/ext/graphqlparser/c/GraphQLParser.cpp +0 -35
  226. data/ext/graphqlparser/c/GraphQLParser.h +0 -54
  227. data/ext/graphqlparser/dump_json_ast.cpp +0 -48
  228. data/ext/graphqlparser/lexer.lpp +0 -324
  229. data/ext/graphqlparser/parser.ypp +0 -693
  230. data/ext/graphqlparser/parsergen/lexer.cpp +0 -2633
  231. data/ext/graphqlparser/parsergen/lexer.h +0 -528
  232. data/ext/graphqlparser/parsergen/location.hh +0 -189
  233. data/ext/graphqlparser/parsergen/parser.tab.cpp +0 -3300
  234. data/ext/graphqlparser/parsergen/parser.tab.hpp +0 -646
  235. data/ext/graphqlparser/parsergen/position.hh +0 -179
  236. data/ext/graphqlparser/parsergen/stack.hh +0 -156
  237. data/ext/graphqlparser/syntaxdefs.h +0 -19
  238. data/ext/libgraphqlparser/AstNode.h +0 -36
  239. data/ext/libgraphqlparser/CMakeLists.txt +0 -148
  240. data/ext/libgraphqlparser/CONTRIBUTING.md +0 -23
  241. data/ext/libgraphqlparser/GraphQLParser.cpp +0 -76
  242. data/ext/libgraphqlparser/GraphQLParser.h +0 -55
  243. data/ext/libgraphqlparser/JsonVisitor.cpp +0 -161
  244. data/ext/libgraphqlparser/JsonVisitor.h +0 -121
  245. data/ext/libgraphqlparser/LICENSE +0 -22
  246. data/ext/libgraphqlparser/README.clang-tidy +0 -7
  247. data/ext/libgraphqlparser/README.md +0 -84
  248. data/ext/libgraphqlparser/ast/ast.ast +0 -203
  249. data/ext/libgraphqlparser/ast/ast.py +0 -61
  250. data/ext/libgraphqlparser/ast/c.py +0 -100
  251. data/ext/libgraphqlparser/ast/c.pyc +0 -0
  252. data/ext/libgraphqlparser/ast/c_impl.py +0 -61
  253. data/ext/libgraphqlparser/ast/c_impl.pyc +0 -0
  254. data/ext/libgraphqlparser/ast/c_visitor_impl.py +0 -39
  255. data/ext/libgraphqlparser/ast/c_visitor_impl.pyc +0 -0
  256. data/ext/libgraphqlparser/ast/casing.py +0 -26
  257. data/ext/libgraphqlparser/ast/casing.pyc +0 -0
  258. data/ext/libgraphqlparser/ast/cxx.py +0 -197
  259. data/ext/libgraphqlparser/ast/cxx.pyc +0 -0
  260. data/ext/libgraphqlparser/ast/cxx_impl.py +0 -61
  261. data/ext/libgraphqlparser/ast/cxx_impl.pyc +0 -0
  262. data/ext/libgraphqlparser/ast/cxx_json_visitor_header.py +0 -42
  263. data/ext/libgraphqlparser/ast/cxx_json_visitor_header.pyc +0 -0
  264. data/ext/libgraphqlparser/ast/cxx_json_visitor_impl.py +0 -80
  265. data/ext/libgraphqlparser/ast/cxx_json_visitor_impl.pyc +0 -0
  266. data/ext/libgraphqlparser/ast/cxx_visitor.py +0 -64
  267. data/ext/libgraphqlparser/ast/cxx_visitor.pyc +0 -0
  268. data/ext/libgraphqlparser/ast/js.py +0 -65
  269. data/ext/libgraphqlparser/ast/license.py +0 -10
  270. data/ext/libgraphqlparser/ast/license.pyc +0 -0
  271. data/ext/libgraphqlparser/c/GraphQLAstNode.cpp +0 -25
  272. data/ext/libgraphqlparser/c/GraphQLAstNode.h +0 -33
  273. data/ext/libgraphqlparser/c/GraphQLAstToJSON.cpp +0 -21
  274. data/ext/libgraphqlparser/c/GraphQLAstToJSON.h +0 -24
  275. data/ext/libgraphqlparser/c/GraphQLAstVisitor.cpp +0 -55
  276. data/ext/libgraphqlparser/c/GraphQLAstVisitor.h +0 -53
  277. data/ext/libgraphqlparser/c/GraphQLParser.cpp +0 -35
  278. data/ext/libgraphqlparser/c/GraphQLParser.h +0 -54
  279. data/ext/libgraphqlparser/clang-tidy-all.sh +0 -3
  280. data/ext/libgraphqlparser/cmake/version.cmake +0 -16
  281. data/ext/libgraphqlparser/dump_json_ast.cpp +0 -48
  282. data/ext/libgraphqlparser/go/README.md +0 -20
  283. data/ext/libgraphqlparser/go/callbacks.go +0 -18
  284. data/ext/libgraphqlparser/go/gotest.go +0 -64
  285. data/ext/libgraphqlparser/lexer.lpp +0 -324
  286. data/ext/libgraphqlparser/libgraphqlparser.pc.in +0 -11
  287. data/ext/libgraphqlparser/parser.ypp +0 -693
  288. data/ext/libgraphqlparser/parsergen/lexer.cpp +0 -2633
  289. data/ext/libgraphqlparser/parsergen/lexer.h +0 -528
  290. data/ext/libgraphqlparser/parsergen/location.hh +0 -189
  291. data/ext/libgraphqlparser/parsergen/parser.tab.cpp +0 -3300
  292. data/ext/libgraphqlparser/parsergen/parser.tab.hpp +0 -646
  293. data/ext/libgraphqlparser/parsergen/position.hh +0 -179
  294. data/ext/libgraphqlparser/parsergen/stack.hh +0 -156
  295. data/ext/libgraphqlparser/python/CMakeLists.txt +0 -14
  296. data/ext/libgraphqlparser/python/README.md +0 -5
  297. data/ext/libgraphqlparser/python/example.py +0 -31
  298. data/ext/libgraphqlparser/syntaxdefs.h +0 -19
  299. data/ext/libgraphqlparser/test/BuildCAPI.c +0 -5
  300. data/ext/libgraphqlparser/test/CMakeLists.txt +0 -25
  301. data/ext/libgraphqlparser/test/JsonVisitorTests.cpp +0 -28
  302. data/ext/libgraphqlparser/test/ParserTests.cpp +0 -352
  303. data/ext/libgraphqlparser/test/kitchen-sink.graphql +0 -59
  304. data/ext/libgraphqlparser/test/kitchen-sink.json +0 -1
  305. data/ext/libgraphqlparser/test/schema-kitchen-sink.graphql +0 -78
  306. data/ext/libgraphqlparser/test/schema-kitchen-sink.json +0 -1
  307. data/ext/libgraphqlparser/test/valgrind.supp +0 -33
  308. data/ext/version.cpp +0 -21
  309. data/lib/graphqlparser.so +0 -0
  310. data/lib/rails/graphql/native/functions.rb +0 -38
  311. data/lib/rails/graphql/native/location.rb +0 -41
  312. data/lib/rails/graphql/native/pointers.rb +0 -23
  313. data/lib/rails/graphql/native/visitor.rb +0 -349
  314. data/lib/rails/graphql/native.rb +0 -56
  315. data/test/integration/schemas/authorization.rb +0 -12
@@ -1,11 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rails # :nodoc:
4
- module GraphQL # :nodoc:
5
- class Request # :nodoc:
3
+ module Rails
4
+ module GraphQL
5
+ class Request
6
6
  # = GraphQL Request Errors
7
7
  #
8
- # This class is inspired by +ActiveModel::Erros+. The idea is to hold all
8
+ # This class is inspired by +ActiveModel::Errors+. The idea is to hold all
9
9
  # the errors that happened during the execution of a request. It also
10
10
  # helps to export such information to the result object.
11
11
  class Errors
@@ -27,7 +27,7 @@ module Rails # :nodoc:
27
27
  @items.deep_dup
28
28
  end
29
29
 
30
- # Add +message+ to the list of errors. Any other keywork argument will
30
+ # Add +message+ to the list of errors. Any other keyword argument will
31
31
  # be used on set on the +:extensions+ part.
32
32
  #
33
33
  # ==== Options
@@ -42,12 +42,22 @@ module Rails # :nodoc:
42
42
  item['locations'] ||= [{ line: line.to_i, column: col.to_i }] \
43
43
  if line.present? && col.present?
44
44
 
45
- item['path'] = path if path.present? && path.is_a?(Array)
45
+ item['path'] = path if path.present? && path.is_a?(::Array)
46
46
  item['extensions'] = extra.deep_stringify_keys if extra.present?
47
47
  item['locations']&.map!(&:stringify_keys)
48
48
 
49
49
  @items << item.compact
50
50
  end
51
+
52
+ # Dump the necessary information from errors to a cached operation
53
+ def cache_dump
54
+ @items.select { |item| item.dig('extensions', 'stage') == 'organize' }
55
+ end
56
+
57
+ # Load the necessary information from a cached request data
58
+ def cache_load(data)
59
+ @items += data
60
+ end
51
61
  end
52
62
  end
53
63
  end
@@ -1,18 +1,19 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rails # :nodoc:
4
- module GraphQL # :nodoc:
5
- class Request # :nodoc:
3
+ module Rails
4
+ module GraphQL
5
+ class Request
6
6
  # = GraphQL Request Event
7
7
  #
8
8
  # A small extension of the original event to support extra methods and
9
9
  # helpers when performing events during a request
10
10
  class Event < GraphQL::Event
11
- OBJECT_BASED_READERS = %i[fragment operation spread].freeze
11
+ OBJECT_BASED_READERS = %i[fragment spread].freeze
12
12
 
13
- delegate :schema, :errors, :context, to: :request
13
+ delegate :errors, :context, :extensions, to: :request
14
14
  delegate :instance_for, to: :strategy
15
- delegate :memo, to: :source
15
+ delegate :memo, :schema, to: :source
16
+ delegate :subscription_provider, to: :schema
16
17
 
17
18
  attr_reader :strategy, :request, :index
18
19
 
@@ -33,7 +34,16 @@ module Rails # :nodoc:
33
34
  super(name, source, **data)
34
35
  end
35
36
 
37
+ # TODO: Implement a faster way to check if if the event is from the
38
+ # same source by separating exclusive events beforehand
39
+
40
+ # If the source is a field, than also compare to the actual field
41
+ def same_source?(other)
42
+ super || (source.try(:kind) == :field && source.field == other)
43
+ end
44
+
36
45
  # Provide a way to access the current field value
46
+ # TODO: Maybe change this to +current+ to get the value by reference
37
47
  def current_value
38
48
  resolver&.current_value
39
49
  end
@@ -45,6 +55,11 @@ module Rails # :nodoc:
45
55
  resolver&.override_value(value)
46
56
  end
47
57
 
58
+ # Get the operation for the current source
59
+ def operation
60
+ (object.kind == :operation) ? object : source.operation
61
+ end
62
+
48
63
  # Return the strategy context as the resolver
49
64
  def resolver
50
65
  strategy.context
@@ -52,7 +67,7 @@ module Rails # :nodoc:
52
67
 
53
68
  # Return the actual field when the source is a request field
54
69
  def field
55
- source.field if source.try(:kind) === :field
70
+ source.field if source.try(:kind) == :field
56
71
  end
57
72
 
58
73
  # Check if the event source is of the given +type+
@@ -99,7 +114,7 @@ module Rails # :nodoc:
99
114
  # it will return the object
100
115
  def method_missing(method_name, *args, **xargs, &block)
101
116
  if OBJECT_BASED_READERS.include?(method_name)
102
- object if object.kind === method_name
117
+ object if object.kind == method_name
103
118
  elsif current_value&.respond_to?(method_name)
104
119
  current_value&.public_send(method_name, *args, **xargs, &block)
105
120
  else
@@ -1,62 +1,104 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rails # :nodoc:
4
- module GraphQL # :nodoc:
5
- class Request # :nodoc:
3
+ module Rails
4
+ module GraphQL
5
+ class Request
6
6
  # Helper module to collect the directives from fragments, operations, and
7
7
  # fields.
8
8
  module Directives
9
9
  # Get the list of listeners from directives set during the request only
10
- def all_listeners
11
- directives.map(&:all_listeners).reduce(:+) || Set.new
10
+ def directive_listeners
11
+ return unless directives?
12
+ return @directive_listeners if defined?(@directive_listeners)
13
+ @directive_listeners = directives.map(&:all_listeners).compact.reduce(:+)
12
14
  end
13
15
 
16
+ alias all_listeners directive_listeners
17
+
14
18
  # Get the list of events from directives set during the request only and
15
19
  # then caches it by request
16
- def all_events
17
- @all_events ||= directives.map(&:all_events).inject({}) do |lhash, rhash|
18
- Helpers.merge_hash_array(lhash, rhash)
20
+ def directive_events
21
+ return unless directives?
22
+ @directive_events ||= begin
23
+ directives.map(&:all_events).compact.inject({}) do |lhash, rhash|
24
+ Helpers.merge_hash_array(lhash, rhash)
25
+ end
19
26
  end
20
27
  end
21
28
 
29
+ alias all_events directive_events
30
+
31
+ # Check if the current component is using a directive
32
+ # TODO: This does not work with the instance
33
+ def using?(item)
34
+ return false unless directives?
35
+
36
+ directive = (item.is_a?(Symbol) || item.is_a?(String)) ? find_directive!(item) : item
37
+ (directive < GraphQL::Directive) && directives.any?(directive)
38
+ end
39
+
40
+ # Build the cache object
41
+ def cache_dump
42
+ return super unless defined?(@directives)
43
+
44
+ super.merge(directives: all_to_gid(@directives.transform_values))
45
+ end
46
+
47
+ # Organize from cache data
48
+ def cache_load(data)
49
+ return super unless data.key?(:directives)
50
+
51
+ @directives = all_from_gid(data[:directives].transform_values).freeze
52
+
53
+ super
54
+ end
55
+
22
56
  protected
23
57
 
24
58
  # Make sure to always return a set
25
59
  def directives
26
- @directives || Set.new
60
+ @directives if directives?
27
61
  end
28
62
 
29
- alias all_directives directives
63
+ # Check if any execution directive was added
64
+ def directives?
65
+ defined?(@directives)
66
+ end
30
67
 
31
68
  # Helper parser for directives that also collect necessary variables
32
- def parse_directives(location = nil)
33
- list = []
34
-
35
- visitor.collect_directives(*data[:directives]) do |data|
36
- instance = find_directive!(data[:name])
69
+ def parse_directives(nodes, location = nil)
70
+ return if nodes.nil?
37
71
 
38
- args = directive_arguments(instance)
39
- args = collect_arguments(args, data[:arguments]) do |errors|
40
- "Invalid arguments for @#{instance.gql_name} directive" \
41
- " added to #{gql_name} #{kind}: #{errors}."
72
+ list = nil
73
+ nodes.each do |(name, arguments)|
74
+ instance = find_directive!(name.to_s)
75
+ values = arguments&.each_with_object({}) do |(name, value, var_name), hash|
76
+ hash[name.to_s] = var_name.nil? ? value : var_name
42
77
  end
43
78
 
44
- list << instance.new(request.build(Request::Arguments, args))
45
- end unless data[:directives].blank?
79
+ args = directive_arguments(instance)
80
+ args = collect_arguments(args, values)
46
81
 
47
- if list.present?
48
- event = Event.new(:attach, strategy, self, phase: :execution)
49
- list = GraphQL.directives_to_set(list, [], event, location: location || kind)
82
+ (list ||= []) << instance.new(request.build(Request::Arguments, args))
83
+ rescue ArgumentsError => error
84
+ raise ArgumentsError, (+<<~MSG).squish
85
+ Invalid arguments for @#{instance.gql_name} directive
86
+ added to #{gql_name} #{kind}: #{error.message}.
87
+ MSG
50
88
  end
51
89
 
90
+ event = Event.new(:attach, strategy, self, phase: :execution)
91
+ list = GraphQL.directives_to_set(list, [], event, location: location || kind)
92
+
52
93
  @directives = list.freeze
53
94
  end
54
95
 
55
96
  # Get and cache all the arguments for this given +directive+
56
97
  def directive_arguments(directive)
57
- request.cache(:arguments)[directive] ||= begin
58
- result = directive.all_arguments
59
- result.each_value.map(&:gql_name).zip(result.each_value).to_h
98
+ request.nested_cache(:arguments, directive) do
99
+ directive.all_arguments&.each_value&.with_object({}) do |directive, hash|
100
+ hash[directive.gql_name] = directive
101
+ end
60
102
  end
61
103
  end
62
104
  end
@@ -1,43 +1,70 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rails # :nodoc:
4
- module GraphQL # :nodoc:
5
- class Request # :nodoc:
3
+ module Rails
4
+ module GraphQL
5
+ class Request
6
6
  # Helper module to collect the fields from fragments, operations, and also
7
7
  # other fields.
8
8
  module SelectionSet
9
9
  attr_reader :selection
10
10
 
11
+ # Build the cache object
12
+ def cache_dump
13
+ return super unless defined?(@selection)
14
+
15
+ selection = @selection.transform_values do |field|
16
+ field.cache_dump.merge(type: field.class)
17
+ end
18
+
19
+ super.merge(selection: selection)
20
+ end
21
+
22
+ # Organize from cache data
23
+ def cache_load(data)
24
+ return super unless data.key?(:selection)
25
+
26
+ @selection = data[:selection].transform_values do |data|
27
+ component = request.build_from_cache(data[:type])
28
+ component.instance_variable_set(:@parent, self)
29
+ component.cache_load(data)
30
+ component
31
+ end.freeze
32
+
33
+ super
34
+ end
35
+
11
36
  protected
12
37
 
13
- # Helper parser for selection fields that also asssign the actual
38
+ # Helper parser for selection fields that also assign the actual
14
39
  # field defined under the schema structure
15
- def parse_selection
40
+ def parse_selection(nodes)
41
+ return if nodes.nil?
42
+
16
43
  @selection = {}
17
44
  assigners = Hash.new { |h, k| h[k] = [] }
18
45
 
19
- visitor.collect_fields(*data[:selection]) do |kind, node, data|
20
- component = add_component(kind, node, data)
21
- assigners[component.name] << component if component.assignable?
22
- end unless data[:selection].nil? || data[:selection].null?
46
+ nodes.each do |node|
47
+ component = add_component(node)
48
+ assigners[component.name.to_s] << component if component.assignable?
49
+ end
23
50
 
24
- assing_fields!(assigners)
51
+ assign_fields!(assigners)
25
52
  @selection.freeze
26
53
  end
27
54
 
28
55
  # Using +fields_source+, find the needed ones to be assigned to the
29
56
  # current requested fields. As shown by benchmark, since the index is
30
57
  # based on Symbols, the best way to find +gql_name+ based fields is
31
- # through interation and search. Complexity O(n)
32
- def assing_fields!(assigners)
58
+ # through iteration, then search and assign. Complexity O(n)
59
+ def assign_fields!(assigners)
33
60
  pending = assigners.map(&:size).reduce(:+) || 0
34
61
  return if pending.zero?
35
62
 
36
- fields_source.each_value do |field|
63
+ fields_source&.each_value do |field|
37
64
  next unless assigners.key?(field.gql_name)
38
65
 
39
66
  items = assigners[field.gql_name]
40
- items.each_with_object(field).each(&:assing_to)
67
+ items.each_with_object(field).each(&:assign_to)
41
68
  break if (pending -= items.size) === 0
42
69
  end
43
70
  end
@@ -45,20 +72,21 @@ module Rails # :nodoc:
45
72
  # Recursive operation that perform the organization step for the
46
73
  # selection
47
74
  def organize_fields
48
- selection.each_value(&:organize!) if selection.any?
75
+ return unless run_selection?
76
+ selection.each_value(&:organize!)
49
77
  end
50
78
 
51
79
  # Find all the fields that have a prepare step and execute them
52
80
  def prepare_fields
53
- return unless selection.any?
54
- (strategy.listeners[:prepare] & selection.values).each(&:prepare!)
81
+ return unless run_selection?
82
+ selection.each_value(&:prepare!)
55
83
  end
56
84
 
57
85
  # Trigger the process of resolving the value of all the fields. Since
58
86
  # complex object may or may not be inside an array, this helps to
59
87
  # decide if a new stack should be started or not
60
88
  def resolve_fields(object = nil)
61
- return unless selection.any?
89
+ return unless run_selection?
62
90
 
63
91
  items = selection.each_value
64
92
  items = items.each_with_object(object) unless object.nil?
@@ -70,15 +98,19 @@ module Rails # :nodoc:
70
98
 
71
99
  private
72
100
 
73
- def add_component(kind, node, data)
74
- item_name = data.try(:alias).presence || data[:name]
101
+ def run_selection?
102
+ selection.present? && !unresolvable?
103
+ end
104
+
105
+ def add_component(node)
106
+ item_name = node[1] || node[0]
75
107
 
76
- if kind === :spread
77
- selection[selection.size] = request.build(Component::Spread, self, node, data)
78
- elsif data[:name] === '__typename'
79
- selection[item_name] ||= request.build(Component::Typename, self, node, data)
108
+ if node.of_type?(:spread)
109
+ selection[selection.size] = request.build(Component::Spread, self, node)
110
+ elsif node[0] === '__typename'
111
+ selection[item_name] ||= request.build(Component::Typename, self, node)
80
112
  else
81
- selection[item_name] ||= request.build(Component::Field, self, node, data)
113
+ selection[item_name] ||= request.build(Component::Field, self, node)
82
114
  end
83
115
  end
84
116
  end
@@ -1,25 +1,27 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rails # :nodoc:
4
- module GraphQL # :nodoc:
5
- class Request # :nodoc:
3
+ module Rails
4
+ module GraphQL
5
+ class Request
6
6
  # A set of helper methods to write a value to the response
7
7
  module ValueWriters
8
8
  # TODO: Maybe move this to a setting so it allow extensions
9
9
  KIND_WRITERS = {
10
- union: 'write_union',
11
- interface: 'write_interface',
12
- object: 'write_object',
10
+ union: :write_union,
11
+ interface: :write_interface,
12
+ object: :write_object,
13
13
  }.freeze
14
14
 
15
15
  # Write a value to the response
16
16
  def write_value(value)
17
17
  return write_leaf(value) if value.nil?
18
- send(KIND_WRITERS[field.kind] || 'write_leaf', value)
18
+ send(KIND_WRITERS[field.kind] || :write_leaf, value)
19
19
  end
20
20
 
21
21
  # Resolve a given value when it is an array
22
22
  def write_array(value, idx = -1, &block)
23
+ return write_leaf(value) if value.nil?
24
+
23
25
  write_array!(value) do |item|
24
26
  stacked(idx += 1) do
25
27
  block.call(item, idx)
@@ -30,24 +32,25 @@ module Rails # :nodoc:
30
32
  block.call(nil, idx)
31
33
  response.next
32
34
 
33
- format_array_execption(error, idx)
34
- request.exception_to_error(error, @node)
35
+ format_array_exception(error, idx)
36
+ request.exception_to_error(error, self)
35
37
  end
36
38
  rescue StandardError => error
37
- format_array_execption(error, idx)
39
+ format_array_exception(error, idx)
38
40
  raise
39
41
  end
40
42
  end
41
43
 
42
44
  # Helper to start writing as array
45
+ # TODO: Add the support for `iterator`
43
46
  def write_array!(value, &block)
44
- raise InvalidValueError, <<~MSG.squish unless value.respond_to?(:each)
47
+ raise InvalidValueError, (+<<~MSG).squish unless value.respond_to?(:each)
45
48
  The #{gql_name} field is excepting an array
46
49
  but got an "#{value.class.name}" instead.
47
50
  MSG
48
51
 
49
52
  @writing_array = true
50
- response.with_stack(field.gql_name, array: true, plain: leaf_type?) do
53
+ response.with_stack(gql_name, array: true, plain: leaf_type?) do
51
54
  value.each(&block)
52
55
  end
53
56
  ensure
@@ -55,10 +58,12 @@ module Rails # :nodoc:
55
58
  end
56
59
 
57
60
  # Add the item index to the exception message
58
- def format_array_execption(error, idx)
59
- real_error = 'The ' + ActiveSupport::Inflector.ordinalize(idx + 1)
60
- real_error += " value of the #{gql_name} field"
61
- source_error = "The #{gql_name} field value"
61
+ def format_array_exception(error, idx)
62
+ real_error = (+<<~MSG).squish
63
+ The #{ActiveSupport::Inflector.ordinalize(idx + 1)} value of the #{gql_name} field
64
+ MSG
65
+
66
+ source_error = +"The #{gql_name} field value"
62
67
 
63
68
  message = error.message.gsub(source_error, real_error)
64
69
  error.define_singleton_method(:message) { message }
@@ -68,13 +73,13 @@ module Rails # :nodoc:
68
73
 
69
74
  # Write a value based on a Union type
70
75
  def write_union(value)
71
- object = type_klass.all_members.reverse_each.find { |t| t.valid_member?(value) }
76
+ object = type_klass.type_for(value, request)
72
77
  object.nil? ? raise_invalid_member! : resolve_fields(object)
73
78
  end
74
79
 
75
80
  # Write a value based on a Interface type
76
81
  def write_interface(value)
77
- object = type_klass.all_types.reverse_each.find { |t| t.valid_member?(value) }
82
+ object = type_klass.type_for(value, request)
78
83
  object.nil? ? raise_invalid_member! : resolve_fields(object)
79
84
  end
80
85
 
@@ -105,7 +110,7 @@ module Rails # :nodoc:
105
110
  # A problem when an object-based value is not a valid member of the
106
111
  # +type_klass+ of this field
107
112
  def raise_invalid_member!
108
- raise(FieldError, <<~MSG.squish)
113
+ raise FieldError, (+<<~MSG).squish
109
114
  The #{gql_name} field result is not a member of #{type_klass.gql_name}.
110
115
  MSG
111
116
  end
@@ -0,0 +1,100 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rails
4
+ module GraphQL
5
+ class Request
6
+ # = GraphQL Request Bypass Data
7
+ #
8
+ # This class works in collaboration with the prepare stage of a request
9
+ # execution. In that stage, the strategy must check if the request already
10
+ # have a prepared data for the field. The field can result in a instance
11
+ # of this class, which than bypasses the prepare stage by grabbing the
12
+ # next value from here
13
+ class PreparedData
14
+ SCHEMA_BASED = Helpers::WithSchemaFields::TYPE_FIELD_CLASS.keys.freeze
15
+ NULL = Object.new.freeze
16
+
17
+ REPEAT_OPTIONS = {
18
+ true => true,
19
+ false => 1,
20
+ once: 1,
21
+ cycle: true,
22
+ always: true,
23
+ }.freeze
24
+
25
+ # Look up the given +field+ using the request as a reference. It accepts
26
+ # any +Rails::GraphQL::Field+ or a string where +"query.create_user"+
27
+ # means a query field on the request schema with +create_user+ as name,
28
+ # or +create_user+ as gql_name, and "User.devices" will use the schema
29
+ # of the request to lookup the type +"User"+ and then pick the field
30
+ # +devices+
31
+ def self.lookup(request, field)
32
+ return field if field.is_a?(GraphQL::Field)
33
+
34
+ source, name = field.to_s.split('.')
35
+ return if source.nil? || name.nil?
36
+
37
+ if SCHEMA_BASED.any? { |item| item.to_s == source }
38
+ request.schema.find_field!(source.to_sym, name)
39
+ elsif (type = request.schema.find_type!(source)).is_a?(Helpers::WithFields)
40
+ type.find_field!(name)
41
+ else
42
+ field
43
+ end
44
+ rescue NotFoundError
45
+ # Return the original value, maybe it will be resolved somewhere else
46
+ field
47
+ end
48
+
49
+ def initialize(field, value, repeat: 1)
50
+ # Check if it has a valid field
51
+ raise ::ArgumentError, (+<<~MSG).squish unless field.is_a?(GraphQL::Field)
52
+ Unable to setup a prepared data for "#{field.inspect}".
53
+ You must provide a valid field.
54
+ MSG
55
+
56
+ @field = field
57
+ @value = value
58
+ @array = value.is_a?(Array) && !field.array?
59
+ @repeat = true if !@array && !value.is_a?(Array)
60
+ @repeat ||=
61
+ case repeat
62
+ when Numeric then repeat
63
+ when Enumerator then repeat.size
64
+ else REPEAT_OPTIONS[repeat]
65
+ end
66
+ end
67
+
68
+ # Add one more item to the list of data
69
+ def push(*values)
70
+ return @value += values if @array
71
+ @value = [@value, *values]
72
+ end
73
+
74
+ # The the whole value, because the prepare stage always deal with all
75
+ # the information available
76
+ def all
77
+ @field.array? ? Array.wrap(@value) : @value
78
+ end
79
+
80
+ # Get the enumerable of the whole value
81
+ def enum
82
+ @enum ||= (@array ? @value.to_enum : @value.then)
83
+ end
84
+
85
+ # Get the next value, take into consideration the value on repeat
86
+ def next
87
+ value = enum.next
88
+ @field.array? ? Array.wrap(value) : value
89
+ rescue StopIteration
90
+ if @repeat == true || (@repeat != false && (@repeat -= 1) > 0)
91
+ enum.rewind
92
+ self.next
93
+ else
94
+ NULL
95
+ end
96
+ end
97
+ end
98
+ end
99
+ end
100
+ end