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,8 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rails # :nodoc:
4
- module GraphQL # :nodoc:
5
- class Type # :nodoc:
3
+ module Rails
4
+ module GraphQL
5
+ class Type
6
6
  # = GraphQL ObjectType
7
7
  #
8
8
  # Objects represent a list of named fields, each of which yield a value of
@@ -13,6 +13,8 @@ module Rails # :nodoc:
13
13
  extend Helpers::WithAssignment
14
14
  extend Helpers::WithFields
15
15
 
16
+ include Helpers::Instantiable
17
+
16
18
  setup! output: true
17
19
 
18
20
  self.field_type = Field::OutputField
@@ -24,31 +26,28 @@ module Rails # :nodoc:
24
26
  Type::Union,
25
27
  ].freeze
26
28
 
27
- eager_autoload do
28
- autoload :DirectiveObject
29
- autoload :EnumValueObject
30
- autoload :FieldObject
31
- autoload :InputValueObject
32
- autoload :SchemaObject
33
- autoload :TypeObject
34
- end
29
+ autoload :DirectiveObject
30
+ autoload :EnumValueObject
31
+ autoload :FieldObject
32
+ autoload :InputValueObject
33
+ autoload :SchemaObject
34
+ autoload :TypeObject
35
35
 
36
36
  # Define the methods for accessing the interfaces of the object
37
37
  inherited_collection :interfaces, instance_reader: false
38
38
 
39
- # The purpose of instantiating an object is to have access to its
40
- # public methods. It then runs from the strategy perspective, pointing
41
- # out any other methods to the manually set event
42
- delegate_missing_to :event
43
- attr_reader :event
44
-
45
39
  class << self
46
40
  # Plain objects can check if a given value is a valid member
47
41
  def valid_member?(value)
48
42
  return true if valid_assignment?(value)
49
- checker = value.is_a?(Hash) ? :key? : :respond_to?
50
- value = value.with_indifferent_access if value.is_a?(Hash)
51
- fields.values.all? { |field| value.public_send(checker, field.method_name) }
43
+
44
+ check_hash = value.is_a?(::Hash)
45
+ checker = check_hash ? :key? : :respond_to?
46
+
47
+ fields.values.all? do |field|
48
+ value.public_send(checker, field.method_name) ||
49
+ (check_hash && (field.null? || value.key?(field.gql_name)))
50
+ end
52
51
  end
53
52
 
54
53
  # Check if the other type is equivalent, by checking if the other is
@@ -58,17 +57,16 @@ module Rails # :nodoc:
58
57
  end
59
58
 
60
59
  # Use this method to assign interfaces to the object
61
- def implements(*others)
60
+ def implements(*others, import_fields: true)
62
61
  return if others.blank?
63
62
 
64
- cache = all_interfaces.dup
63
+ current = all_interfaces&.dup
65
64
  others.flat_map do |item|
66
65
  item = find_interface!(item)
67
- next if cache.include?(item)
66
+ next if current&.include?(item) || interfaces.include?(item)
68
67
 
69
- item.implemented(self)
68
+ item.implemented(self, import_fields: import_fields)
70
69
  interfaces << item
71
- cache << item
72
70
  end
73
71
  end
74
72
 
@@ -77,6 +75,16 @@ module Rails # :nodoc:
77
75
  (object = find_interface(interface)).present? && all_interfaces.include?(object)
78
76
  end
79
77
 
78
+ def inspect
79
+ return super if self.eql?(Type::Object)
80
+ fields = @fields.values.map(&:inspect)
81
+ fields = fields.presence && +" {#{fields.join(', ')}}"
82
+
83
+ directives = inspect_directives
84
+ directives.prepend(' ') if directives.present?
85
+ +"#<GraphQL::Object #{gql_name}#{fields}#{directives}>"
86
+ end
87
+
80
88
  private
81
89
 
82
90
  # Soft find an object as an +interface+
@@ -94,7 +102,7 @@ module Rails # :nodoc:
94
102
  ) unless object.is_a?(Module) && object < Type::Interface
95
103
 
96
104
  return object if object.try(:interface?)
97
- raise ArgumentError, <<~MSG.squish
105
+ raise ArgumentError, (+<<~MSG).squish
98
106
  The given "#{object}" is not a valid interface.
99
107
  MSG
100
108
  end
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rails
4
+ module GraphQL
5
+ class Type
6
+ # Handles any type of data for both input and output
7
+ class Scalar::AnyScalar < Scalar
8
+ desc 'The Any scalar type allows anything for both input and output.'
9
+
10
+ class << self
11
+ def valid_input?(value)
12
+ true
13
+ end
14
+
15
+ def valid_output?(value)
16
+ true
17
+ end
18
+
19
+ def to_json(value)
20
+ value.to_json
21
+ end
22
+
23
+ def as_json(value)
24
+ value.as_json
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
30
+ end
@@ -1,14 +1,14 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rails # :nodoc:
4
- module GraphQL # :nodoc:
5
- class Type # :nodoc:
3
+ module Rails
4
+ module GraphQL
5
+ class Type
6
6
  # Bigint basically removes the limit of the value, but it serializes as
7
7
  # a string so it won't go against the spec
8
8
  class Scalar::BigintScalar < Scalar
9
9
  desc <<~DESC
10
- The Bigint scalar type represents a signed numeric nonfractional value.
11
- It can go beyond the Int 32bit limit, but it's exchanged as a string.
10
+ The Bigint scalar type represents a signed numeric non-fractional value.
11
+ It can go beyond the Int 32-bit limit, but it's exchanged as a string.
12
12
  DESC
13
13
 
14
14
  class << self
@@ -1,8 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rails # :nodoc:
4
- module GraphQL # :nodoc:
5
- class Type # :nodoc:
3
+ module Rails
4
+ module GraphQL
5
+ class Type
6
6
  # Binary basically allows binary data to be shared using Base64 strings,
7
7
  # ensuring the UTF-8 encoding and performing the necessary conversion.
8
8
  #
@@ -15,6 +15,8 @@ module Rails # :nodoc:
15
15
  Normally used to share files and uploads.
16
16
  DESC
17
17
 
18
+ use :specified_by, url: 'https://www.rfc-editor.org/rfc/rfc3548'
19
+
18
20
  class << self
19
21
  def as_json(value)
20
22
  Base64.encode64(value.to_s).chomp
@@ -1,8 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rails # :nodoc:
4
- module GraphQL # :nodoc:
5
- class Type # :nodoc:
3
+ module Rails
4
+ module GraphQL
5
+ class Type
6
6
  # The Boolean scalar type represents +true+ or +false+.
7
7
  #
8
8
  # See http://spec.graphql.org/June2018/#sec-Boolean
@@ -16,19 +16,19 @@ module Rails # :nodoc:
16
16
 
17
17
  class << self
18
18
  def valid_input?(value)
19
- value === true || value === false
19
+ valid_token?(value) || value === true || value === false
20
20
  end
21
21
 
22
- def valid_output?(value)
23
- value.respond_to?(:present?)
22
+ def valid_output?(*)
23
+ true # Pretty much anything can be turned into a boolean
24
24
  end
25
25
 
26
26
  def as_json(value)
27
- value.present?
27
+ !(value.nil? || FALSE_VALUES.include?(value))
28
28
  end
29
29
 
30
30
  def deserialize(value)
31
- !FALSE_VALUES.include?(value)
31
+ as_json(value)
32
32
  end
33
33
  end
34
34
  end
@@ -1,12 +1,14 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rails # :nodoc:
4
- module GraphQL # :nodoc:
5
- class Type # :nodoc:
3
+ module Rails
4
+ module GraphQL
5
+ class Type
6
6
  # Date uses a ISO 8601 string to exchange the value.
7
7
  class Scalar::DateScalar < Scalar
8
8
  desc 'The Date scalar type represents a ISO 8601 string value.'
9
9
 
10
+ use :specified_by, url: 'https://www.rfc-editor.org/rfc/rfc3339'
11
+
10
12
  class << self
11
13
  def valid_input?(value)
12
14
  super && !!Date.iso8601(value)
@@ -1,14 +1,16 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rails # :nodoc:
4
- module GraphQL # :nodoc:
5
- class Type # :nodoc:
3
+ module Rails
4
+ module GraphQL
5
+ class Type
6
6
  # DateTime uses a ISO 8601 string to exchange the value.
7
7
  class Scalar::DateTimeScalar < Scalar
8
8
  aliases :datetime
9
9
 
10
10
  desc 'The DateTime scalar type represents a ISO 8601 string value.'
11
11
 
12
+ use :specified_by, url: 'https://www.rfc-editor.org/rfc/rfc3339'
13
+
12
14
  class << self
13
15
  def valid_input?(value)
14
16
  super && !!(Time.iso8601(value) rescue false)
@@ -1,8 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rails # :nodoc:
4
- module GraphQL # :nodoc:
5
- class Type # :nodoc:
3
+ module Rails
4
+ module GraphQL
5
+ class Type
6
6
  # Similar to float, but implies extra precision, making sure that all the
7
7
  # decimal-point numbers are kept. As Bigint, it uses a string so it won't
8
8
  # go against the spec.
@@ -12,6 +12,8 @@ module Rails # :nodoc:
12
12
  The values are exchange as string.
13
13
  DESC
14
14
 
15
+ use :specified_by, url: 'https://en.wikipedia.org/wiki/IEEE_754-2008_revision'
16
+
15
17
  class << self
16
18
  def valid_input?(value)
17
19
  super && value.match?(/\A[+-]?\d+\.\d+\z/)
@@ -1,8 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rails # :nodoc:
4
- module GraphQL # :nodoc:
5
- class Type # :nodoc:
3
+ module Rails
4
+ module GraphQL
5
+ class Type
6
6
  # The Float scalar type represents signed double-precision fractional
7
7
  # values as specified by
8
8
  # {IEEE 754}[http://en.wikipedia.org/wiki/IEEE_floating_point].
@@ -11,11 +11,11 @@ module Rails # :nodoc:
11
11
  class Scalar::FloatScalar < Scalar
12
12
  self.spec_object = true
13
13
 
14
- desc 'The Float scalar type represents signed doubleprecision fractional values.'
14
+ desc 'The Float scalar type represents signed double-precision fractional values.'
15
15
 
16
16
  class << self
17
17
  def valid_input?(value)
18
- value.is_a?(Float)
18
+ valid_token?(value) || value.is_a?(Float)
19
19
  end
20
20
 
21
21
  def valid_output?(value)
@@ -1,8 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rails # :nodoc:
4
- module GraphQL # :nodoc:
5
- class Type # :nodoc:
3
+ module Rails
4
+ module GraphQL
5
+ class Type
6
6
  # The ID scalar type represents a unique identifier, often used to
7
7
  # refetch an object or as the key for a cache. The ID type is serialized
8
8
  # in the same way as a +StringScalar+.
@@ -20,7 +20,8 @@ module Rails # :nodoc:
20
20
 
21
21
  class << self
22
22
  def valid_input?(value)
23
- super || value.is_a?(Integer)
23
+ valid_token?(value, :string) || valid_token?(value, :int) ||
24
+ value.is_a?(String) || value.is_a?(Integer)
24
25
  end
25
26
 
26
27
  def as_json(value)
@@ -30,7 +31,7 @@ module Rails # :nodoc:
30
31
  end
31
32
 
32
33
  def deserialize(value)
33
- value.to_s
34
+ valid_token?(value, :string) ? value[1..-2] : value
34
35
  end
35
36
  end
36
37
  end
@@ -1,8 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rails # :nodoc:
4
- module GraphQL # :nodoc:
5
- class Type # :nodoc:
3
+ module Rails
4
+ module GraphQL
5
+ class Type
6
6
  # The Int scalar type represents a signed 32-bit numeric
7
7
  # non-fractional value.
8
8
  #
@@ -11,14 +11,15 @@ module Rails # :nodoc:
11
11
  self.spec_object = true
12
12
  aliases :integer
13
13
 
14
- desc 'The Int scalar type represents a signed 32bit numeric nonfractional value.'
14
+ desc 'The Int scalar type represents a signed 32-bit numeric non-fractional value.'
15
15
 
16
16
  max_value = (1 << 31)
17
17
  RANGE = (-max_value...max_value).freeze
18
18
 
19
19
  class << self
20
20
  def valid_input?(value)
21
- value.is_a?(Integer) && RANGE.cover?(value)
21
+ (valid_token?(value) && RANGE.cover?(value.to_i)) ||
22
+ (value.is_a?(Integer) && RANGE.cover?(value))
22
23
  end
23
24
 
24
25
  def valid_output?(value)
@@ -0,0 +1,41 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rails
4
+ module GraphQL
5
+ class Type
6
+ # Handles an unstructured JSON data
7
+ class Scalar::JsonScalar < Scalar
8
+ rename! 'JSON'
9
+
10
+ desc <<~DESC
11
+ The JSON scalar type represents an unstructured JSON data
12
+ with all its available keys and values.
13
+ DESC
14
+
15
+ use :specified_by, url: 'https://www.rfc-editor.org/rfc/rfc8259'
16
+
17
+ class << self
18
+ def valid_input?(value)
19
+ valid_token?(value, :hash) || value.is_a?(::Hash)
20
+ end
21
+
22
+ def valid_output?(value)
23
+ value.is_a?(::Hash)
24
+ end
25
+
26
+ def to_json(value)
27
+ value.to_json
28
+ end
29
+
30
+ def as_json(value)
31
+ value.as_json
32
+ end
33
+
34
+ def deserialize(value)
35
+ value.is_a?(::GQLParser::Token) ? JSON.parse(value) : value
36
+ end
37
+ end
38
+ end
39
+ end
40
+ end
41
+ end
@@ -1,8 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rails # :nodoc:
4
- module GraphQL # :nodoc:
5
- class Type # :nodoc:
3
+ module Rails
4
+ module GraphQL
5
+ class Type
6
6
  # The String scalar type represents textual data, represented as UTF-8
7
7
  # character sequences.
8
8
  #
@@ -11,16 +11,30 @@ module Rails # :nodoc:
11
11
  self.spec_object = true
12
12
 
13
13
  desc <<~DESC
14
- The String scalar type represents textual data, represented as UTF8 character
14
+ The String scalar type represents textual data, represented as UTF-8 character
15
15
  sequences.
16
16
  DESC
17
17
 
18
18
  class << self
19
+ def valid_input?(value)
20
+ super || valid_token?(value, :heredoc)
21
+ end
22
+
19
23
  def as_json(value)
20
24
  value = value.to_s unless value.is_a?(String)
21
25
  value = value.encode(Encoding::UTF_8) unless value.encoding.eql?(Encoding::UTF_8)
22
26
  value
23
27
  end
28
+
29
+ def deserialize(value)
30
+ if valid_token?(value, :string)
31
+ value[1..-2] # Remove the quotes
32
+ elsif valid_token?(value, :heredoc)
33
+ value[3..-4].strip_heredoc # Remove the quotes and fix indentation
34
+ else
35
+ value
36
+ end
37
+ end
24
38
  end
25
39
  end
26
40
  end
@@ -1,8 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rails # :nodoc:
4
- module GraphQL # :nodoc:
5
- class Type # :nodoc:
3
+ module Rails
4
+ module GraphQL
5
+ class Type
6
6
  # Uses as a float extension in order to transmit times (hours, minutes,
7
7
  # and seconds) as a numeric representation of seconds and milliseconds.
8
8
  class Scalar::TimeScalar < Scalar::FloatScalar
@@ -10,12 +10,14 @@ module Rails # :nodoc:
10
10
 
11
11
  desc <<~MSG
12
12
  The Time scalar type that represents a distance in time using hours,
13
- minutes, seconds, and miliseconds.
13
+ minutes, seconds, and milliseconds.
14
14
  MSG
15
15
 
16
+ use :specified_by, url: 'https://www.rfc-editor.org/rfc/rfc3339'
17
+
16
18
  # A +base_object+ helps to identify what methods are actually available
17
19
  # to work as resolvers
18
- class_attribute :precision, instance_writer: false, default: 6
20
+ class_attribute :precision, instance_accessor: false, default: 6
19
21
 
20
22
  class << self
21
23
  def valid_input?(value)
@@ -31,7 +33,7 @@ module Rails # :nodoc:
31
33
  end
32
34
 
33
35
  def deserialize(value)
34
- "#{EPOCH.to_date.iso8601} #{value} UTC".to_time
36
+ (+"#{EPOCH.to_date.iso8601} #{value} UTC").to_time
35
37
  end
36
38
  end
37
39
  end
@@ -1,8 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rails # :nodoc:
4
- module GraphQL # :nodoc:
5
- class Type # :nodoc:
3
+ module Rails
4
+ module GraphQL
5
+ class Type
6
6
  # = GraphQL ScalarType
7
7
  #
8
8
  # Scalar types represent primitive leaf values in a GraphQL type system.
@@ -18,27 +18,27 @@ module Rails # :nodoc:
18
18
 
19
19
  setup! leaf: true, input: true, output: true
20
20
 
21
- eager_autoload do
22
- # Load all the default scalar types
23
- autoload :IntScalar
24
- autoload :FloatScalar
25
- autoload :StringScalar
26
- autoload :BooleanScalar
27
- autoload :IdScalar
21
+ # Load all the default scalar types
22
+ autoload :IntScalar
23
+ autoload :FloatScalar
24
+ autoload :StringScalar
25
+ autoload :BooleanScalar
26
+ autoload :IdScalar
28
27
 
29
- # Load all additional scalar types
30
- autoload :BigintScalar
31
- autoload :BinaryScalar
32
- autoload :DateScalar
33
- autoload :DateTimeScalar
34
- autoload :DecimalScalar
35
- autoload :TimeScalar
36
- end
28
+ # Load all additional scalar types
29
+ autoload :AnyScalar
30
+ autoload :BigintScalar
31
+ autoload :BinaryScalar
32
+ autoload :DateScalar
33
+ autoload :DateTimeScalar
34
+ autoload :DecimalScalar
35
+ autoload :JsonScalar
36
+ autoload :TimeScalar
37
37
 
38
38
  class << self
39
39
  # Check if a given value is a valid non-deserialized input
40
40
  def valid_input?(value)
41
- value.is_a?(String)
41
+ valid_token?(value) || value.is_a?(String)
42
42
  end
43
43
 
44
44
  # Check if a given value is a valid non-serialized output
@@ -56,13 +56,16 @@ module Rails # :nodoc:
56
56
  value.to_s
57
57
  end
58
58
 
59
- # Turn a user input of this given type into an ruby object
59
+ # Turn a user input of this given type into a Ruby object
60
60
  def deserialize(value)
61
- value
61
+ value.is_a?(::GQLParser::Token) ? as_json(value) : value
62
62
  end
63
63
 
64
- def inspect # :nodoc:
65
- "#<GraphQL::Scalar #{gql_name}>"
64
+ def inspect
65
+ return super if self.eql?(Type::Scalar)
66
+ directives = inspect_directives
67
+ directives.prepend(' ') if directives.present?
68
+ +"#<GraphQL::Scalar #{gql_name}#{directives}>"
66
69
  end
67
70
  end
68
71
  end
@@ -1,29 +1,30 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rails # :nodoc:
4
- module GraphQL # :nodoc:
5
- class Type # :nodoc:
3
+ module Rails
4
+ module GraphQL
5
+ class Type
6
6
  # = GraphQL UnionType
7
7
  #
8
8
  # Unions represent an object that could be one of a list of GraphQL
9
9
  # Object types.
10
10
  # See http://spec.graphql.org/June2018/#UnionTypeDefinition
11
11
  class Union < Type
12
+ include Helpers::Instantiable
13
+
12
14
  setup! output: true
13
15
 
14
16
  # The list of accepted classes for members
15
17
  VALID_MEMBER_TYPES = [Type::Object].freeze
16
18
 
17
19
  # Define the methods for accessing the members attribute
18
- inherited_collection :members
19
-
20
- # The purpose of instantiating an interface is to have access to its
21
- # public methods. It then runs from the strategy perspective, pointing
22
- # out any other methods to the manually set event
23
- delegate_missing_to :event
24
- attr_reader :event
20
+ inherited_collection :members, instance_reader: false
25
21
 
26
22
  class << self
23
+ # Figure out which one of the members is compatible with the provided +value+
24
+ def type_for(value, *)
25
+ all_members&.reverse_each&.find { |t| t.valid_member?(value) }
26
+ end
27
+
27
28
  # Return the base type of the objects on this union
28
29
  def of_kind
29
30
  members.first.base_type
@@ -45,13 +46,13 @@ module Rails # :nodoc:
45
46
  GraphQL.type_map.fetch(item, namespaces: namespaces)
46
47
  end
47
48
 
48
- checker = others.lazy.map { |item| item.try(:base_type) }.uniq.force
49
- raise ArgumentError, <<~MSG.squish unless checker.size === 1
49
+ checker = others.map { |item| item.try(:base_type) }.uniq
50
+ raise ArgumentError, (+<<~MSG).squish unless checker.size === 1
50
51
  All the union members must be of the same base class.
51
52
  MSG
52
53
 
53
- check_types = members? ? [members.first.base_type] : VALID_MEMBER_TYPES
54
- raise ArgumentError, <<~MSG.squish unless (check_types & checker).size === 1
54
+ check_types = members? ? [of_kind] : VALID_MEMBER_TYPES
55
+ raise ArgumentError, (+<<~MSG).squish unless (check_types & checker).size === 1
55
56
  A union cannot contain members of different base classes.
56
57
  MSG
57
58
 
@@ -63,21 +64,23 @@ module Rails # :nodoc:
63
64
  super if defined? super
64
65
 
65
66
  members = all_members
66
- raise ArgumentError, <<~MSG.squish unless members.size >= 1
67
+ raise ArgumentError, (+<<~MSG).squish unless members.size >= 1
67
68
  A union must contain at least one member.
68
69
  MSG
69
70
 
70
71
  size = members.lazy.map(&:base_type).uniq.force.size
71
- raise ArgumentError, <<~MSG.squish unless size.eql?(1)
72
+ raise ArgumentError, (+<<~MSG).squish unless size.eql?(1)
72
73
  All the members of the union must contain the same base class.
73
74
  MSG
74
75
  end
75
76
 
76
- def inspect # :nodoc:
77
- <<~INFO.squish + '>'
77
+ def inspect
78
+ return super if self.eql?(Type::Union)
79
+ (+<<~INFO).squish << '>'
78
80
  #<GraphQL::Union #{gql_name}
79
81
  (#{all_members.size})
80
82
  {#{all_members.map(&:gql_name).join(' | ')}}
83
+ #{inspect_directives}
81
84
  INFO
82
85
  end
83
86
  end