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
@@ -4,21 +4,17 @@ module Rails
4
4
  module GraphQL
5
5
  # All the helper methods for building the source
6
6
  module Source::ActiveRecordSource::Builders
7
- # Override the object class to identify interfaces due to STI
8
- def object_class
9
- sti_interface? ? interface_class : super
10
- end
11
-
12
- # Get all unique attribute names that exists in the current model
13
- def reflection_attributes(holder)
14
- items = []
15
- each_reflection(holder) do |item|
16
- next unless item.belongs_to?
17
- next items << item.foreign_key.to_s unless item.polymorphic?
18
- items += [item.foreign_type, item.foreign_key]
7
+ # List of all columns that should be threated as IDs
8
+ # TODO: Add a exclusive cache for the build process
9
+ def id_columns
10
+ @id_columns ||= begin
11
+ result = Set.new(GraphQL.enumerate(primary_key))
12
+ each_reflection.each_with_object(result) do |item, arr|
13
+ next unless item.belongs_to?
14
+ arr << item.foreign_key.to_s
15
+ arr << item.foreign_key if item.polymorphic?
16
+ end
19
17
  end
20
-
21
- items.compact.flatten.unshift(primary_key)
22
18
  end
23
19
 
24
20
  # Iterate over all the attributes, except the primary key, from the model
@@ -27,26 +23,32 @@ module Rails
27
23
  def each_attribute(holder, skip_primary_key = true)
28
24
  adapter_key = GraphQL.ar_adapter_key(adapter_name)
29
25
 
30
- skip_fields = skips_for(holder).map(&:to_s)
26
+ skip_fields = Set.new
31
27
  skip_fields << model.inheritance_column
32
28
  skip_fields << primary_key unless skip_primary_key
33
29
 
34
- send("#{adapter_key}_attributes") do |attribute, *args|
35
- yield attribute, *args unless skip_fields.include?(attribute)
30
+ send(:"#{adapter_key}_attributes") do |attribute, *args, **xargs|
31
+ yield(attribute, *args, **xargs) unless skip_fields.include?(attribute)
36
32
  end
37
33
  end
38
34
 
39
35
  # Iterate over all the model reflections
40
- # TODO: Turn into an enumerator
41
- def each_reflection(holder)
42
- skip_fields = skips_for(holder).map(&:to_s)
43
- model._reflections.each_value do |reflection|
44
- next if skip_fields.include?(reflection.name.to_s)
45
-
36
+ def each_reflection(&block)
37
+ model._reflections.each_value.select do |reflection|
46
38
  reflection = model._reflections[reflection.to_s] \
47
39
  unless reflection.is_a?(abstract_reflection)
48
40
 
49
- yield reflection unless reflection.nil?
41
+ !reflection.nil?
42
+ end.each(&block)
43
+ end
44
+
45
+ # Build arguments that correctly reflect the primary key, as a single
46
+ # column or as an array of columns
47
+ def build_primary_key_arguments(holder)
48
+ if primary_key.is_a?(::Array)
49
+ primary_key.each { |key| holder.argument(key, :id, null: false) }
50
+ else
51
+ holder.argument(primary_key, :id, null: false)
50
52
  end
51
53
  end
52
54
 
@@ -55,9 +57,7 @@ module Rails
55
57
  # Check if the given model is consider an interface due to single table
56
58
  # inheritance and the given model is the base class
57
59
  def sti_interface?
58
- @sti_interface ||= begin
59
- model.has_attribute?(model.inheritance_column) && model.base_class == model
60
- end
60
+ model.has_attribute?(model.inheritance_column) && model.base_class == model
61
61
  end
62
62
 
63
63
  # Build all enums associated to the class, collecting them from the
@@ -65,22 +65,22 @@ module Rails
65
65
  def build_enum_types
66
66
  return remove_instance_variable(:@enums) if enums.blank?
67
67
 
68
- @enums = enums.map do |attribute, setting|
69
- [attribute.to_s, create_enum(attribute.to_s, setting, once: true)]
68
+ @enums = enums.each_with_object({}) do |(attribute, setting), hash|
69
+ class_name = base_name + attribute.to_s.classify
70
+ hash[attribute.to_s] = create_enum(class_name, setting)
70
71
  rescue DuplicatedError
71
72
  next
72
- end.compact.to_h.freeze
73
+ end.freeze
73
74
  end
74
75
 
75
76
  # Build all necessary attribute fields into the given +holder+
76
77
  def build_attribute_fields(holder, **field_options)
77
- attributes_as_ids = reflection_attributes(holder)
78
78
  each_attribute(holder) do |key, type, **options|
79
- next if skip.include?(key) || holder.field?(key)
79
+ next if holder.has_field?(key) || skip_field?(key, on: holder.kind)
80
80
 
81
81
  str_key = key.to_s
82
82
  type = (defined?(@enums) && @enums.key?(str_key) && @enums[str_key]) ||
83
- (attributes_as_ids.include?(str_key) && :id) || type
83
+ (id_columns.include?(str_key) && :id) || type
84
84
 
85
85
  options[:null] = !attr_required?(key) unless options.key?(:null)
86
86
  holder.field(key, type, **options.merge(field_options[key] || {}))
@@ -89,55 +89,68 @@ module Rails
89
89
 
90
90
  # Build all necessary reflection fields into the given +holder+
91
91
  def build_reflection_fields(holder)
92
- each_reflection(holder) do |item|
93
- next if holder.field?(item.name)
92
+ return unless with_associations?
93
+
94
+ each_reflection do |item|
95
+ next if holder.has_field?(item.name) || item.polymorphic? ||
96
+ skip_field?(item.name, on: holder.kind)
97
+
94
98
  type_map_after_register(item.klass) do |type|
95
- next unless (type.object? && type.try(:assigned_to) != item.klass) ||
96
- type.interface?
99
+ next unless type.try(:assigned_to) != item.klass ||
100
+ type.input_type? || type.leaf_type?
97
101
 
98
102
  options = reflection_to_options(item)
99
103
 
100
- if type <= Source::ActiveRecordSource
101
- source_name = item.collection? ? type.plural : type.singular
102
- proxy_options = options.merge(alias: reflection.name, of_type: :proxy)
104
+ if item.collection?
105
+ owner = type.try(:owner)
106
+ source = owner.is_a?(Helpers::WithSchemaFields) &&
107
+ (owner.try(:collection_field) || owner.query_fields.try(:[], item.name))
103
108
 
104
- if (source = type.query_fields[source_name]).present?
109
+ if source.present?
110
+ proxy_options = options.merge(alias: item.name, of_type: :proxy)
105
111
  field = holder.safe_field(source, **proxy_options)
106
112
  end
107
113
  end
108
114
 
109
- field ||= holder.field(item.name, type, **options)
110
- field.before_resolve(:preload_association, item.name)
111
- field.before_resolve(:build_association_scope, item.name)
112
- field.resolve(:parent_owned_records, item.collection?)
115
+ if (field ||= holder.safe_field(item.name, type, **options))
116
+ field.before_resolve(:preload_association, item.name)
117
+ field.before_resolve(:build_association_scope, item.name)
118
+ field.resolve(:parent_owned_records, item.collection?)
119
+ end
113
120
  end
114
121
  end
115
122
  end
116
123
 
117
124
  # Build all +accepts_nested_attributes_for+ inside the input object
118
125
  def build_reflection_inputs(holder)
126
+ return unless with_associations?
127
+
128
+ suffix = GraphQL.config.auto_suffix_input_objects
119
129
  model.nested_attributes_options.each_key do |reflection_name|
120
- next if (reflection = model._reflect_on_association(reflection_name)).nil?
130
+ reflection = model._reflect_on_association(reflection_name)
131
+ next if reflection.nil? || reflection.polymorphic?
121
132
 
122
133
  expected_name = reflection.klass.name.tr(':', '')
123
- expected_name += 'Input' unless expected_name.ends_with?('Input')
134
+ expected_name += suffix unless expected_name.end_with?(suffix)
135
+
136
+ type_map_after_register(expected_name) do |type|
137
+ next unless type.input?
124
138
 
125
- type_map_after_register(expected_name) do |input|
126
139
  options = reflection_to_options(reflection).merge(null: true)
127
140
  field_name = "#{reflection.name}_attributes"
128
- holder.safe_field(field_name, input, **options)
141
+ holder.safe_field(field_name, type, **options)
129
142
  end
130
143
  end
131
144
  end
132
145
 
133
- # Transform a replection into a field options
146
+ # Transform a reflection into a field options
134
147
  def reflection_to_options(reflection)
135
148
  options = { array: reflection.collection? }
136
149
 
137
150
  required = options[:array]
138
151
  required ||= attr_required?(reflection.name)
139
152
  required ||= attr_required?(reflection.association_foreign_key) \
140
- if reflection.belongs_to?
153
+ if reflection.belongs_to? && !reflection.options[:optional]
141
154
 
142
155
  options[:nullable] = !options[:array]
143
156
  options[:null] = !required
@@ -1,107 +1,116 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Rails # :nodoc:
4
- module GraphQL # :nodoc:
3
+ module Rails
4
+ module GraphQL
5
5
  # = GraphQL Source Active Record
6
6
  #
7
7
  # This source allows the translation of active record objects into a new
8
8
  # source object, creating:
9
9
  # 1. 1 Object
10
10
  # 2. 1 Input
11
- # 3. 2 Query fields (ingular and plural)
11
+ # 3. 2 Query fields (singular and plural)
12
12
  # 4. 3 Mutation fields (create, update, destroy)
13
- class Source::ActiveRecordSource < Source
13
+ class Source::ActiveRecordSource < Source::Base
14
14
  include Source::ScopedArguments
15
15
 
16
16
  require_relative 'active_record/builders'
17
17
  extend Builders
18
18
 
19
19
  validate_assignment('ActiveRecord::Base') do |value|
20
- "The \"#{value.name}\" is not a valid Active Record model"
20
+ +"The \"#{value.name}\" is not a valid Active Record model"
21
21
  end
22
22
 
23
+ # Mark if the objects created from this source will build fields for
24
+ # associations associated to the object
25
+ class_attribute :with_associations, instance_accessor: false, default: true
26
+
27
+ # Set what type of errors should be exported to the extensions of the
28
+ # request when trying to save records. False will disable it
29
+ class_attribute :errors_to_extensions, instance_accessor: false, default: false
30
+
31
+ # Marks if the source should be threated as an interface, meaning that
32
+ # no object will be created, instead an interface will
33
+ class_attribute :act_as_interface, instance_accessor: false, default: false
34
+
23
35
  # The name of the class (or the class itself) to be used as superclass for
24
36
  # the generate GraphQL interface type of this source
25
- class_attribute :interface_class, instance_writer: false
26
- alias interface interface_class
37
+ class_attribute :interface_class, instance_accessor: false
27
38
 
28
39
  %i[object interface input].each do |type|
29
- settings = { abstract: true, with_owner: true }
40
+ settings = { abstract: true, owner: true }
30
41
  send("#{type}_class=", create_type(type, **settings))
31
42
  end
32
43
 
33
44
  self.abstract = true
45
+ self.hook_names = hook_names.to_a.insert(1, :enums, :interface).to_set.freeze
46
+
47
+ delegate :primary_key, :singular, :plural, :model, :id_columns, to: :class
34
48
 
35
- delegate :primary_key, :singular, :plural, :model, to: :class
49
+ skip_from(:input, :created_at, :updated_at)
36
50
 
37
- skip_on :input, :created_at, :updated_at
51
+ step(:start) { GraphQL.enable_ar_adapter(adapter_name) }
52
+ step(:enums) { build_enum_types }
38
53
 
39
- on :start do
40
- GraphQL.enable_ar_adapter(adapter_name)
41
- build_enum_types
54
+ step(:object) do
55
+ build_attribute_fields(self)
56
+ build_reflection_fields(self)
42
57
  end
43
58
 
44
- on :object do
59
+ step(:interface) do
45
60
  build_attribute_fields(self)
46
61
  build_reflection_fields(self)
47
62
  end
48
63
 
49
- on :input do
50
- extra = { primary_key => { null: true } }
64
+ step(:input) do
65
+ extra = GraphQL.enumerate(primary_key).entries.product([{ null: true }]).to_h
51
66
  build_attribute_fields(self, **extra)
52
67
  build_reflection_inputs(self)
53
68
 
54
- safe_field(model.inheritance_column, :string, null: false) if object.interface?
69
+ safe_field(model.inheritance_column, :string, null: false) if interface?
55
70
  safe_field(:_delete, :boolean, default: false)
56
71
 
57
72
  reference = model.new
58
73
  model.columns_hash.each_value do |column|
59
74
  change_field(column.name, default: reference[column.name]) \
60
- if column.default.present? && field?(column.name)
75
+ if column.default.present? && has_field?(column.name)
61
76
  end
62
77
  end
63
78
 
64
- on :query do
65
- safe_field(plural, object, full: true) do
66
- before_resolve :load_records
79
+ step(:query) do
80
+ interface? ? build_interface : build_object
81
+ type = interface? ? interface : object
82
+
83
+ safe_field(plural, type, full: true) do
84
+ before_resolve(:load_records)
67
85
  end
68
86
 
69
- safe_field(singular, object, null: false) do
70
- argument primary_key, :id, null: false
71
- before_resolve :load_record
87
+ safe_field(singular, type, null: false) do
88
+ build_primary_key_arguments(self)
89
+ before_resolve(:load_record)
72
90
  end
73
91
  end
74
92
 
75
- on :mutation do
76
- safe_field("create_#{singular}", object, null: false) do
77
- argument singular, input, null: false
78
- perform :create_record
79
- end
93
+ step(:mutation) do
94
+ interface? ? build_interface : build_object
95
+ type = interface? ? interface : object
96
+ build_input
80
97
 
81
- safe_field("update_#{singular}", object, null: false) do
82
- argument primary_key, :id, null: false
83
- argument singular, input, null: false
84
- before_resolve :load_record
85
- perform :update_record
98
+ safe_field("create_#{singular}", type, null: false) do
99
+ argument(singular, input, null: false)
100
+ perform(:create_record)
86
101
  end
87
102
 
88
- safe_field("delete_#{singular}", :boolean, null: false) do
89
- argument primary_key, :id, null: false
90
- before_resolve :load_record
91
- perform :destroy_record
103
+ safe_field("update_#{singular}", type, null: false) do
104
+ build_primary_key_arguments(self)
105
+ argument(singular, input, null: false)
106
+ before_resolve(:load_record)
107
+ perform(:update_record)
92
108
  end
93
- end
94
109
 
95
- on :finish do
96
- attach_fields!
97
- attach_scoped_arguments_to(query_fields.values)
98
- attach_scoped_arguments_to(mutation_fields.values)
99
-
100
- next if model.base_class == model
101
-
102
- # TODO: Allow nested inheritance for setting up implementation
103
- type_map_after_register(model.base_class) do |type|
104
- object.implements(type) if type.interface?
110
+ safe_field("delete_#{singular}", :boolean, null: false) do
111
+ build_primary_key_arguments(self)
112
+ before_resolve(:load_record)
113
+ perform(:destroy_record)
105
114
  end
106
115
  end
107
116
 
@@ -110,10 +119,11 @@ module Rails # :nodoc:
110
119
  delegate :singular, :plural, :param_key, to: :model_name
111
120
  delegate :adapter_name, to: 'model.connection'
112
121
 
122
+ alias interface interface_class
113
123
  alias model assigned_class
114
124
  alias model= assigned_to=
115
125
 
116
- # Set the assignemnt to a model with a similar name as the source
126
+ # Set the assignment to a model with a similar name as the source
117
127
  def assigned_to
118
128
  @assigned_to ||= name.delete_prefix('GraphQL::')[0..-7]
119
129
  end
@@ -125,41 +135,103 @@ module Rails # :nodoc:
125
135
  end
126
136
 
127
137
  # Just a little override to ensure that both model and table are ready
128
- def build!
138
+ def build!(*)
129
139
  super if model&.table_exists?
130
140
  end
131
141
 
142
+ # Allows setting up an interface instead of an object. Mostly because
143
+ # some models are better dealt as interfaces than actual objects
144
+ def interface
145
+ @interface ||= create_type(superclass: interface_class, gql_name: object_name)
146
+ end
147
+
148
+ # Checks if the source is building an interface instead of an object
149
+ def interface?
150
+ defined?(@interface) || act_as_interface? || sti_interface?
151
+ end
152
+
153
+ # Provides access to the default plural query field, for associations interconnection
154
+ def collection_field
155
+ find_field(:query, plural)
156
+ end
157
+
158
+ # Hook into the unregister to clean enums
159
+ def unregister!
160
+ super
161
+ @enums = nil
162
+ end
163
+
132
164
  protected
133
165
 
134
166
  # Check if a given +attr_name+ is associated with a presence validator
135
- # but ignores when there is a default value
167
+ # (that does not include +if+ nor +unless+), but ignores when there is
168
+ # a default value
136
169
  def attr_required?(attr_name)
137
170
  return true if attr_name.eql?(primary_key)
138
171
  return false if model.columns_hash[attr_name]&.default.present?
139
172
  return false unless model._validators.key?(attr_name.to_sym)
140
- model._validators[attr_name.to_sym].any?(presence_validator)
173
+
174
+ model._validators[attr_name.to_sym].any? do |validator|
175
+ validator.is_a?(presence_validator) &&
176
+ !(validator.options[:if] ||
177
+ validator.options[:unless])
178
+ end
141
179
  rescue ::ActiveRecord::StatementInvalid
142
180
  false
143
181
  end
144
182
 
145
183
  private
146
184
 
147
- def presence_validator # :nodoc:
185
+ # Hook into the build process to selective avoid :interface or :object
186
+ def build!(type)
187
+ return if type == :object && interface?
188
+ return if type == :interface && !interface?
189
+ super
190
+ end
191
+
192
+ def presence_validator
148
193
  ::ActiveRecord::Validations::PresenceValidator
149
194
  end
150
195
  end
151
196
 
152
- # Prepare to load multiple records from the underlying table
153
- def load_records(scope = model.default_scoped)
197
+ # Prepare to load multiple records from the underlying model
198
+ def load_records(scope = nil)
199
+ scope ||= event.last_result || model.default_scoped
154
200
  inject_scopes(scope, :relation)
155
201
  end
156
202
 
157
- # Prepare to load a single record from the underlying table
158
- def load_record(scope = model.default_scoped)
159
- scope.find(event.argument(primary_key))
203
+ # Prepare to load a single record from the underlying model
204
+ def load_record(scope = nil, find_by: nil)
205
+ scope ||= event.last_result || model.default_scoped
206
+ find_by ||= { primary_key => event.argument(primary_key) }
207
+ inject_scopes(scope, :relation).find_by(find_by)
208
+ end
209
+
210
+ # The perform step for the +create+ based mutation
211
+ def create_record
212
+ input_argument.resource.tap(&:save!)
213
+ rescue ::ActiveRecord::RecordInvalid => error
214
+ errors_to_extensions(error.record.errors)
215
+ raise
216
+ end
217
+
218
+ # The perform step for the +update+ based mutation
219
+ def update_record
220
+ current_value.tap { |record| record.update!(**input_argument.params) }
221
+ rescue ::ActiveRecord::RecordInvalid => error
222
+ errors_to_extensions(error.record.errors)
223
+ raise
224
+ end
225
+
226
+ # The perform step for the +delete+ based mutation
227
+ def destroy_record
228
+ !!current_value.destroy!
229
+ rescue ::ActiveRecord::RecordInvalid => error
230
+ errors_to_extensions(error.record.errors)
231
+ raise
160
232
  end
161
233
 
162
- # Get the chain result and preload the records with thre resulting scope
234
+ # Get the chain result and preload the records with the resulting scope
163
235
  def preload_association(association, scope = nil)
164
236
  event.stop(preload(association, scope || event.last_result), layer: :object)
165
237
  end
@@ -169,10 +241,11 @@ module Rails # :nodoc:
169
241
  scope = model._reflect_on_association(association).klass.default_scoped
170
242
 
171
243
  # Apply proxied injected scopes
172
- proxied = event.field.try(:proxied_owner)
173
- scope = event.on_instance(proxied) do |instance|
174
- instance.inject_scopes(scope, :relation)
175
- end if proxied.present? && proxied <= Source::ActiveRecordSource
244
+ # TODO: Arguments comes with their proxy, so we might not need this
245
+ # proxied = event.field.try(:proxied_owner)
246
+ # scope = event.on_instance(proxied) do |instance|
247
+ # instance.inject_scopes(scope, :relation)
248
+ # end if proxied.present? && proxied <= Source::ActiveRecordSource
176
249
 
177
250
  # Apply self defined injected scopes
178
251
  inject_scopes(scope, :relation)
@@ -181,26 +254,21 @@ module Rails # :nodoc:
181
254
  # Once the records are pre-loaded due to +preload_association+, use the
182
255
  # parent value and the preloader result to get the records
183
256
  def parent_owned_records(collection_result = false)
184
- data = event.data[:prepared]
257
+ data = event.data[:prepared_data]
185
258
  return collection_result ? [] : nil unless data
186
259
 
187
260
  result = data.records_by_owner[current_value] || []
188
261
  collection_result ? result : result.first
189
262
  end
190
263
 
191
- # The perform step for the +create+ based mutation
192
- def create_record
193
- input_argument.resource.tap(&:save!)
194
- end
264
+ # Expose the errors to the extensions of the response
265
+ def errors_to_extensions(errors, path = nil, format = nil)
266
+ format ||= self.class.errors_to_extensions
267
+ return unless format
195
268
 
196
- # The perform step for the +update+ based mutation
197
- def update_record
198
- current_value.tap { |record| record.update!(**input_argument.params) }
199
- end
200
-
201
- # The perform step for the +delete+ based mutation
202
- def destroy_record
203
- !!current_value.destroy!
269
+ path ||= [operation.name, field.gql_name].compact
270
+ hash = GraphQL.enumerate(path).reduce(request.extensions) { |h, k| h[k] ||= {} }
271
+ hash.replace(format == :messages ? errors.as_json : errors.details)
204
272
  end
205
273
 
206
274
  protected
@@ -212,23 +280,31 @@ module Rails # :nodoc:
212
280
 
213
281
  # Preload the records for a given +association+ using the current value.
214
282
  # It can be further specified with a given +scope+
283
+ # TODO: On Rails 7 we can use the Preloader::Branch class
215
284
  def preload(association, scope = nil)
216
285
  reflection = model._reflect_on_association(association)
217
286
  records = current_value.is_a?(preloader_association) \
218
287
  ? current_value.preloaded_records \
219
288
  : Array.wrap(current_value.itself).compact
220
289
 
221
- ar_preloader.send(:preloaders_for_reflection, reflection, records, scope).first
290
+ klass = preload_class(reflection)
291
+ args = [reflection.klass, records, reflection, scope]
292
+ args << nil if klass.instance_method(:initialize).arity == 6 # Rails 7
293
+ klass.new(*args, true).run
222
294
  end
223
295
 
224
- # Get the cached instance of active record prelaoder
225
- def ar_preloader
226
- event.request.cache(:ar_preloader) { ::ActiveRecord::Associations::Preloader.new }
296
+ # Get the cached instance of active record preloader
297
+ def preload_class(reflection)
298
+ if reflection.options[:through]
299
+ ::ActiveRecord::Associations::Preloader::ThroughAssociation
300
+ else
301
+ ::ActiveRecord::Associations::Preloader::Association
302
+ end
227
303
  end
228
304
 
229
305
  private
230
306
 
231
- def preloader_association # :nodoc:
307
+ def preloader_association
232
308
  ActiveRecord::Associations::Preloader::Association
233
309
  end
234
310
  end
@@ -0,0 +1,83 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rails
4
+ module GraphQL
5
+ class Source
6
+ class Base < GraphQL::Source
7
+ extend Helpers::WithSchemaFields
8
+ extend Helpers::WithAssignment
9
+ extend Helpers::Unregisterable
10
+
11
+ self.abstract = true
12
+
13
+ # The name of the class (or the class itself) to be used as superclass
14
+ # for the generate GraphQL object type of this source
15
+ class_attribute :object_class, instance_accessor: false,
16
+ default: '::Rails::GraphQL::Type::Object'
17
+
18
+ # The name of the class (or the class itself) to be used as superclass
19
+ # for the generate GraphQL input type of this source
20
+ class_attribute :input_class, instance_accessor: false,
21
+ default: '::Rails::GraphQL::Type::Input'
22
+
23
+ # Allow defining a name for the object without going to many troubles
24
+ # like overriding methods
25
+ class_attribute :object_name, instance_accessor: false
26
+
27
+ # Allow defining a name for the input without going to many troubles
28
+ # like overriding methods
29
+ class_attribute :input_name, instance_accessor: false
30
+
31
+ class << self
32
+
33
+ # Unregister all objects that this source was providing
34
+ def unregister!
35
+ @object = @input = nil
36
+ super
37
+ end
38
+
39
+ # Return the GraphQL object type associated with the source. It will
40
+ # create one if it's not defined yet. The created class will be added
41
+ # to the +::GraphQL+ namespace with the addition of any namespace of
42
+ # the current class
43
+ def object
44
+ @object ||= create_type(superclass: object_class, gql_name: object_name)
45
+ end
46
+
47
+ # Return the GraphQL input type associated with the source. It will
48
+ # create one if it's not defined yet. The created class will be added
49
+ # to the +::GraphQL+ namespace with the addition of any namespace of
50
+ # the current class
51
+ def input
52
+ @input ||= create_type(superclass: input_class, gql_name: input_name)
53
+ end
54
+
55
+ protected
56
+
57
+ # A helper method to create an enum type
58
+ def create_enum(enum_name, values, **xargs, &block)
59
+ enumerator = values.each_pair if values.respond_to?(:each_pair)
60
+ enumerator ||= values.each.with_index
61
+
62
+ xargs[:values] = enumerator.sort_by(&:last).map(&:first)
63
+ xargs[:indexed] = enumerator.first.last.is_a?(Numeric)
64
+
65
+ create_type(:enum, enum_name.classify, **xargs, &block)
66
+ end
67
+
68
+ # Helper method to create a class based on the given +type+ and
69
+ # allows several other settings to be executed on it
70
+ def create_type(type = nil, name = base_name, **xargs, &block)
71
+ xargs[:owner] ||= self
72
+ xargs[:namespaces] = namespaces
73
+ xargs[:assigned_to] = safe_assigned_class
74
+ superclass = xargs.delete(:superclass) || type
75
+
76
+ GraphQL::Type.create!(self, name, superclass, **xargs, &block)
77
+ end
78
+
79
+ end
80
+ end
81
+ end
82
+ end
83
+ end