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.
- checksums.yaml +4 -4
- data/ext/console.rb +18 -0
- data/ext/extconf.h +3 -0
- data/ext/extconf.rb +1 -54
- data/ext/gql_parser.c +631 -0
- data/ext/gql_parser.h +21 -0
- data/ext/shared.c +477 -0
- data/ext/shared.h +177 -0
- data/lib/generators/graphql/channel_generator.rb +27 -0
- data/lib/generators/graphql/controller_generator.rb +9 -4
- data/lib/generators/graphql/install_generator.rb +49 -0
- data/lib/generators/graphql/schema_generator.rb +9 -4
- data/lib/generators/graphql/templates/channel.erb +7 -0
- data/lib/generators/graphql/templates/config.rb +97 -0
- data/lib/generators/graphql/templates/controller.erb +2 -0
- data/lib/generators/graphql/templates/schema.erb +5 -3
- data/lib/gql_parser.so +0 -0
- data/lib/rails/graphql/adapters/mysql_adapter.rb +59 -0
- data/lib/rails/graphql/adapters/pg_adapter.rb +25 -22
- data/lib/rails/graphql/adapters/sqlite_adapter.rb +17 -14
- data/lib/rails/graphql/alternative/field_set.rb +48 -0
- data/lib/rails/graphql/alternative/mutation.rb +17 -0
- data/lib/rails/graphql/alternative/query.rb +98 -0
- data/lib/rails/graphql/alternative/subscription.rb +18 -0
- data/lib/rails/graphql/alternative.rb +20 -0
- data/lib/rails/graphql/argument.rb +25 -26
- data/lib/rails/graphql/callback.rb +30 -14
- data/lib/rails/graphql/collectors/hash_collector.rb +26 -7
- data/lib/rails/graphql/collectors/idented_collector.rb +10 -7
- data/lib/rails/graphql/collectors/json_collector.rb +43 -17
- data/lib/rails/graphql/collectors.rb +4 -4
- data/lib/rails/graphql/config.rb +154 -23
- data/lib/rails/graphql/directive/cached_directive.rb +33 -0
- data/lib/rails/graphql/directive/deprecated_directive.rb +10 -10
- data/lib/rails/graphql/directive/include_directive.rb +4 -4
- data/lib/rails/graphql/directive/skip_directive.rb +4 -4
- data/lib/rails/graphql/directive/specified_by_directive.rb +24 -0
- data/lib/rails/graphql/directive.rb +134 -73
- data/lib/rails/graphql/errors.rb +33 -4
- data/lib/rails/graphql/event.rb +21 -9
- data/lib/rails/graphql/field/authorized_field.rb +17 -6
- data/lib/rails/graphql/field/input_field.rb +8 -12
- data/lib/rails/graphql/field/mutation_field.rb +43 -9
- data/lib/rails/graphql/field/output_field.rb +112 -12
- data/lib/rails/graphql/field/proxied_field.rb +35 -26
- data/lib/rails/graphql/field/resolved_field.rb +27 -25
- data/lib/rails/graphql/field/scoped_config.rb +10 -4
- data/lib/rails/graphql/field/subscription_field.rb +123 -0
- data/lib/rails/graphql/field/typed_field.rb +69 -24
- data/lib/rails/graphql/field.rb +89 -74
- data/lib/rails/graphql/global_id.rb +89 -0
- data/lib/rails/graphql/helpers/attribute_delegator.rb +5 -5
- data/lib/rails/graphql/helpers/inherited_collection/array.rb +51 -0
- data/lib/rails/graphql/helpers/inherited_collection/base.rb +45 -0
- data/lib/rails/graphql/helpers/inherited_collection/hash.rb +88 -0
- data/lib/rails/graphql/helpers/inherited_collection.rb +25 -76
- data/lib/rails/graphql/helpers/instantiable.rb +15 -0
- data/lib/rails/graphql/helpers/leaf_from_ar.rb +7 -7
- data/lib/rails/graphql/helpers/registerable.rb +44 -62
- data/lib/rails/graphql/helpers/unregisterable.rb +16 -0
- data/lib/rails/graphql/helpers/with_arguments.rb +33 -28
- data/lib/rails/graphql/helpers/with_assignment.rb +6 -6
- data/lib/rails/graphql/helpers/with_callbacks.rb +28 -11
- data/lib/rails/graphql/helpers/with_description.rb +73 -0
- data/lib/rails/graphql/helpers/with_directives.rb +58 -30
- data/lib/rails/graphql/helpers/with_events.rb +22 -23
- data/lib/rails/graphql/helpers/with_fields.rb +86 -26
- data/lib/rails/graphql/helpers/with_global_id.rb +22 -0
- data/lib/rails/graphql/helpers/with_name.rb +44 -0
- data/lib/rails/graphql/helpers/with_namespace.rb +7 -4
- data/lib/rails/graphql/helpers/with_owner.rb +8 -7
- data/lib/rails/graphql/helpers/with_schema_fields.rb +162 -56
- data/lib/rails/graphql/helpers/with_validator.rb +9 -9
- data/lib/rails/graphql/helpers.rb +10 -3
- data/lib/rails/graphql/introspection.rb +43 -36
- data/lib/rails/graphql/railtie.rb +89 -33
- data/lib/rails/graphql/railties/app/base_channel.rb +10 -0
- data/lib/rails/graphql/railties/app/base_controller.rb +12 -0
- data/lib/rails/graphql/railties/app/views/_cable.js.erb +56 -0
- data/lib/rails/graphql/railties/app/views/_fetch.js.erb +20 -0
- data/lib/rails/graphql/railties/app/views/graphiql.html.erb +101 -0
- data/lib/rails/graphql/railties/base_generator.rb +5 -17
- data/lib/rails/graphql/railties/channel.rb +157 -0
- data/lib/rails/graphql/railties/controller.rb +91 -25
- data/lib/rails/graphql/railties/controller_runtime.rb +5 -5
- data/lib/rails/graphql/railties/log_subscriber.rb +81 -14
- data/lib/rails/graphql/request/arguments.rb +26 -50
- data/lib/rails/graphql/request/backtrace.rb +212 -0
- data/lib/rails/graphql/request/component/field.rb +98 -70
- data/lib/rails/graphql/request/component/fragment.rb +80 -26
- data/lib/rails/graphql/request/component/operation/subscription.rb +162 -4
- data/lib/rails/graphql/request/component/operation.rb +73 -34
- data/lib/rails/graphql/request/component/spread.rb +79 -27
- data/lib/rails/graphql/request/component/typename.rb +28 -13
- data/lib/rails/graphql/request/component.rb +77 -36
- data/lib/rails/graphql/request/context.rb +19 -9
- data/lib/rails/graphql/request/errors.rb +16 -6
- data/lib/rails/graphql/request/event.rb +23 -8
- data/lib/rails/graphql/request/helpers/directives.rb +69 -27
- data/lib/rails/graphql/request/helpers/selection_set.rb +57 -25
- data/lib/rails/graphql/request/helpers/value_writers.rb +24 -19
- data/lib/rails/graphql/request/prepared_data.rb +100 -0
- data/lib/rails/graphql/request/steps/authorizable.rb +24 -14
- data/lib/rails/graphql/request/steps/organizable.rb +111 -49
- data/lib/rails/graphql/request/steps/{prepareable.rb → preparable.rb} +21 -8
- data/lib/rails/graphql/request/steps/{resolveable.rb → resolvable.rb} +16 -7
- data/lib/rails/graphql/request/strategy/cached_strategy.rb +64 -0
- data/lib/rails/graphql/request/strategy/dynamic_instance.rb +6 -6
- data/lib/rails/graphql/request/strategy/multi_query_strategy.rb +6 -13
- data/lib/rails/graphql/request/strategy/sequenced_strategy.rb +9 -9
- data/lib/rails/graphql/request/strategy.rb +147 -77
- data/lib/rails/graphql/request/subscription.rb +82 -0
- data/lib/rails/graphql/request.rb +353 -104
- data/lib/rails/graphql/schema.rb +251 -106
- data/lib/rails/graphql/shortcuts.rb +33 -8
- data/lib/rails/graphql/source/active_record/builders.rb +64 -51
- data/lib/rails/graphql/source/active_record_source.rb +158 -82
- data/lib/rails/graphql/source/base.rb +83 -0
- data/lib/rails/graphql/source/builder.rb +115 -0
- data/lib/rails/graphql/source/scoped_arguments.rb +39 -21
- data/lib/rails/graphql/source.rb +90 -228
- data/lib/rails/graphql/subscription/provider/action_cable.rb +113 -0
- data/lib/rails/graphql/subscription/provider/base.rb +192 -0
- data/lib/rails/graphql/subscription/provider.rb +18 -0
- data/lib/rails/graphql/subscription/store/base.rb +141 -0
- data/lib/rails/graphql/subscription/store/memory.rb +136 -0
- data/lib/rails/graphql/subscription/store.rb +19 -0
- data/lib/rails/graphql/subscription.rb +17 -0
- data/lib/rails/graphql/to_gql.rb +29 -32
- data/lib/rails/graphql/type/creator.rb +196 -0
- data/lib/rails/graphql/type/enum/directive_location_enum.rb +11 -11
- data/lib/rails/graphql/type/enum/type_kind_enum.rb +3 -3
- data/lib/rails/graphql/type/enum.rb +44 -50
- data/lib/rails/graphql/type/input.rb +92 -25
- data/lib/rails/graphql/type/interface.rb +29 -28
- data/lib/rails/graphql/type/object/directive_object.rb +10 -9
- data/lib/rails/graphql/type/object/enum_value_object.rb +3 -3
- data/lib/rails/graphql/type/object/field_object.rb +24 -6
- data/lib/rails/graphql/type/object/input_value_object.rb +6 -7
- data/lib/rails/graphql/type/object/schema_object.rb +5 -8
- data/lib/rails/graphql/type/object/type_object.rb +62 -25
- data/lib/rails/graphql/type/object.rb +34 -26
- data/lib/rails/graphql/type/scalar/any_scalar.rb +30 -0
- data/lib/rails/graphql/type/scalar/bigint_scalar.rb +5 -5
- data/lib/rails/graphql/type/scalar/binary_scalar.rb +5 -3
- data/lib/rails/graphql/type/scalar/boolean_scalar.rb +8 -8
- data/lib/rails/graphql/type/scalar/date_scalar.rb +5 -3
- data/lib/rails/graphql/type/scalar/date_time_scalar.rb +5 -3
- data/lib/rails/graphql/type/scalar/decimal_scalar.rb +5 -3
- data/lib/rails/graphql/type/scalar/float_scalar.rb +5 -5
- data/lib/rails/graphql/type/scalar/id_scalar.rb +6 -5
- data/lib/rails/graphql/type/scalar/int_scalar.rb +6 -5
- data/lib/rails/graphql/type/scalar/json_scalar.rb +41 -0
- data/lib/rails/graphql/type/scalar/string_scalar.rb +18 -4
- data/lib/rails/graphql/type/scalar/time_scalar.rb +8 -6
- data/lib/rails/graphql/type/scalar.rb +26 -23
- data/lib/rails/graphql/type/union.rb +21 -18
- data/lib/rails/graphql/type.rb +43 -26
- data/lib/rails/graphql/type_map.rb +268 -165
- data/lib/rails/graphql/uri.rb +167 -0
- data/lib/rails/graphql/version.rb +19 -3
- data/lib/rails/graphql.rake +3 -0
- data/lib/rails/graphql.rb +91 -56
- data/lib/rails-graphql.rb +1 -1
- data/test/assets/en.yml +29 -0
- data/test/assets/introspection-mem.txt +1 -1
- data/test/assets/introspection.gql +2 -0
- data/test/assets/mem.gql +86 -99
- data/test/assets/mysql.gql +406 -0
- data/test/assets/sqlite.gql +96 -73
- data/test/assets/translate.gql +346 -0
- data/test/config.rb +19 -8
- data/test/graphql/schema_test.rb +14 -50
- data/test/graphql/source_test.rb +8 -85
- data/test/graphql/type/enum_test.rb +207 -203
- data/test/graphql/type/input_test.rb +14 -9
- data/test/graphql/type/interface_test.rb +12 -9
- data/test/graphql/type/object_test.rb +8 -2
- data/test/graphql/type/scalar/any_scalar_test.rb +38 -0
- data/test/graphql/type/scalar/boolean_scalar_test.rb +6 -3
- data/test/graphql/type/scalar/json_scalar_test.rb +23 -0
- data/test/graphql/type_map_test.rb +63 -81
- data/test/graphql/type_test.rb +0 -19
- data/test/graphql_test.rb +1 -1
- data/test/integration/{authorization/authorization_test.rb → authorization_test.rb} +40 -14
- data/test/integration/config.rb +36 -3
- data/test/integration/customization_test.rb +39 -0
- data/test/integration/global_id_test.rb +99 -0
- data/test/integration/memory/star_wars_introspection_test.rb +24 -16
- data/test/integration/memory/star_wars_query_test.rb +54 -3
- data/test/integration/memory/star_wars_validation_test.rb +3 -3
- data/test/integration/mysql/star_wars_introspection_test.rb +25 -0
- data/test/integration/persisted_query_test.rb +87 -0
- data/test/integration/resolver_precedence_test.rb +154 -0
- data/test/integration/schemas/memory.rb +24 -10
- data/test/integration/schemas/mysql.rb +62 -0
- data/test/integration/schemas/sqlite.rb +21 -12
- data/test/integration/sqlite/star_wars_global_id_test.rb +89 -0
- data/test/integration/sqlite/star_wars_introspection_test.rb +10 -0
- data/test/integration/sqlite/star_wars_query_test.rb +14 -1
- data/test/integration/translate_test.rb +73 -0
- data/test/test_ext.rb +16 -13
- metadata +125 -161
- data/ext/depend +0 -3
- data/ext/graphqlparser/Ast.cpp +0 -346
- data/ext/graphqlparser/Ast.h +0 -1214
- data/ext/graphqlparser/AstNode.h +0 -36
- data/ext/graphqlparser/AstVisitor.h +0 -137
- data/ext/graphqlparser/GraphQLParser.cpp +0 -76
- data/ext/graphqlparser/GraphQLParser.h +0 -55
- data/ext/graphqlparser/JsonVisitor.cpp +0 -161
- data/ext/graphqlparser/JsonVisitor.cpp.inc +0 -456
- data/ext/graphqlparser/JsonVisitor.h +0 -121
- data/ext/graphqlparser/JsonVisitor.h.inc +0 -110
- data/ext/graphqlparser/VERSION +0 -1
- data/ext/graphqlparser/c/GraphQLAst.cpp +0 -324
- data/ext/graphqlparser/c/GraphQLAst.h +0 -180
- data/ext/graphqlparser/c/GraphQLAstForEachConcreteType.h +0 -44
- data/ext/graphqlparser/c/GraphQLAstNode.cpp +0 -25
- data/ext/graphqlparser/c/GraphQLAstNode.h +0 -33
- data/ext/graphqlparser/c/GraphQLAstToJSON.cpp +0 -21
- data/ext/graphqlparser/c/GraphQLAstToJSON.h +0 -24
- data/ext/graphqlparser/c/GraphQLAstVisitor.cpp +0 -55
- data/ext/graphqlparser/c/GraphQLAstVisitor.h +0 -53
- data/ext/graphqlparser/c/GraphQLParser.cpp +0 -35
- data/ext/graphqlparser/c/GraphQLParser.h +0 -54
- data/ext/graphqlparser/dump_json_ast.cpp +0 -48
- data/ext/graphqlparser/lexer.lpp +0 -324
- data/ext/graphqlparser/parser.ypp +0 -693
- data/ext/graphqlparser/parsergen/lexer.cpp +0 -2633
- data/ext/graphqlparser/parsergen/lexer.h +0 -528
- data/ext/graphqlparser/parsergen/location.hh +0 -189
- data/ext/graphqlparser/parsergen/parser.tab.cpp +0 -3300
- data/ext/graphqlparser/parsergen/parser.tab.hpp +0 -646
- data/ext/graphqlparser/parsergen/position.hh +0 -179
- data/ext/graphqlparser/parsergen/stack.hh +0 -156
- data/ext/graphqlparser/syntaxdefs.h +0 -19
- data/ext/libgraphqlparser/AstNode.h +0 -36
- data/ext/libgraphqlparser/CMakeLists.txt +0 -148
- data/ext/libgraphqlparser/CONTRIBUTING.md +0 -23
- data/ext/libgraphqlparser/GraphQLParser.cpp +0 -76
- data/ext/libgraphqlparser/GraphQLParser.h +0 -55
- data/ext/libgraphqlparser/JsonVisitor.cpp +0 -161
- data/ext/libgraphqlparser/JsonVisitor.h +0 -121
- data/ext/libgraphqlparser/LICENSE +0 -22
- data/ext/libgraphqlparser/README.clang-tidy +0 -7
- data/ext/libgraphqlparser/README.md +0 -84
- data/ext/libgraphqlparser/ast/ast.ast +0 -203
- data/ext/libgraphqlparser/ast/ast.py +0 -61
- data/ext/libgraphqlparser/ast/c.py +0 -100
- data/ext/libgraphqlparser/ast/c.pyc +0 -0
- data/ext/libgraphqlparser/ast/c_impl.py +0 -61
- data/ext/libgraphqlparser/ast/c_impl.pyc +0 -0
- data/ext/libgraphqlparser/ast/c_visitor_impl.py +0 -39
- data/ext/libgraphqlparser/ast/c_visitor_impl.pyc +0 -0
- data/ext/libgraphqlparser/ast/casing.py +0 -26
- data/ext/libgraphqlparser/ast/casing.pyc +0 -0
- data/ext/libgraphqlparser/ast/cxx.py +0 -197
- data/ext/libgraphqlparser/ast/cxx.pyc +0 -0
- data/ext/libgraphqlparser/ast/cxx_impl.py +0 -61
- data/ext/libgraphqlparser/ast/cxx_impl.pyc +0 -0
- data/ext/libgraphqlparser/ast/cxx_json_visitor_header.py +0 -42
- data/ext/libgraphqlparser/ast/cxx_json_visitor_header.pyc +0 -0
- data/ext/libgraphqlparser/ast/cxx_json_visitor_impl.py +0 -80
- data/ext/libgraphqlparser/ast/cxx_json_visitor_impl.pyc +0 -0
- data/ext/libgraphqlparser/ast/cxx_visitor.py +0 -64
- data/ext/libgraphqlparser/ast/cxx_visitor.pyc +0 -0
- data/ext/libgraphqlparser/ast/js.py +0 -65
- data/ext/libgraphqlparser/ast/license.py +0 -10
- data/ext/libgraphqlparser/ast/license.pyc +0 -0
- data/ext/libgraphqlparser/c/GraphQLAstNode.cpp +0 -25
- data/ext/libgraphqlparser/c/GraphQLAstNode.h +0 -33
- data/ext/libgraphqlparser/c/GraphQLAstToJSON.cpp +0 -21
- data/ext/libgraphqlparser/c/GraphQLAstToJSON.h +0 -24
- data/ext/libgraphqlparser/c/GraphQLAstVisitor.cpp +0 -55
- data/ext/libgraphqlparser/c/GraphQLAstVisitor.h +0 -53
- data/ext/libgraphqlparser/c/GraphQLParser.cpp +0 -35
- data/ext/libgraphqlparser/c/GraphQLParser.h +0 -54
- data/ext/libgraphqlparser/clang-tidy-all.sh +0 -3
- data/ext/libgraphqlparser/cmake/version.cmake +0 -16
- data/ext/libgraphqlparser/dump_json_ast.cpp +0 -48
- data/ext/libgraphqlparser/go/README.md +0 -20
- data/ext/libgraphqlparser/go/callbacks.go +0 -18
- data/ext/libgraphqlparser/go/gotest.go +0 -64
- data/ext/libgraphqlparser/lexer.lpp +0 -324
- data/ext/libgraphqlparser/libgraphqlparser.pc.in +0 -11
- data/ext/libgraphqlparser/parser.ypp +0 -693
- data/ext/libgraphqlparser/parsergen/lexer.cpp +0 -2633
- data/ext/libgraphqlparser/parsergen/lexer.h +0 -528
- data/ext/libgraphqlparser/parsergen/location.hh +0 -189
- data/ext/libgraphqlparser/parsergen/parser.tab.cpp +0 -3300
- data/ext/libgraphqlparser/parsergen/parser.tab.hpp +0 -646
- data/ext/libgraphqlparser/parsergen/position.hh +0 -179
- data/ext/libgraphqlparser/parsergen/stack.hh +0 -156
- data/ext/libgraphqlparser/python/CMakeLists.txt +0 -14
- data/ext/libgraphqlparser/python/README.md +0 -5
- data/ext/libgraphqlparser/python/example.py +0 -31
- data/ext/libgraphqlparser/syntaxdefs.h +0 -19
- data/ext/libgraphqlparser/test/BuildCAPI.c +0 -5
- data/ext/libgraphqlparser/test/CMakeLists.txt +0 -25
- data/ext/libgraphqlparser/test/JsonVisitorTests.cpp +0 -28
- data/ext/libgraphqlparser/test/ParserTests.cpp +0 -352
- data/ext/libgraphqlparser/test/kitchen-sink.graphql +0 -59
- data/ext/libgraphqlparser/test/kitchen-sink.json +0 -1
- data/ext/libgraphqlparser/test/schema-kitchen-sink.graphql +0 -78
- data/ext/libgraphqlparser/test/schema-kitchen-sink.json +0 -1
- data/ext/libgraphqlparser/test/valgrind.supp +0 -33
- data/ext/version.cpp +0 -21
- data/lib/graphqlparser.so +0 -0
- data/lib/rails/graphql/native/functions.rb +0 -38
- data/lib/rails/graphql/native/location.rb +0 -41
- data/lib/rails/graphql/native/pointers.rb +0 -23
- data/lib/rails/graphql/native/visitor.rb +0 -349
- data/lib/rails/graphql/native.rb +0 -56
- 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
|
-
#
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
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 =
|
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
|
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
|
-
|
41
|
-
|
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
|
-
|
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
|
-
|
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.
|
69
|
-
|
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.
|
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
|
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
|
-
(
|
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
|
-
|
93
|
-
|
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
|
96
|
-
type.
|
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
|
101
|
-
|
102
|
-
|
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
|
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.
|
110
|
-
|
111
|
-
|
112
|
-
|
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
|
-
|
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 +=
|
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,
|
141
|
+
holder.safe_field(field_name, type, **options)
|
129
142
|
end
|
130
143
|
end
|
131
144
|
end
|
132
145
|
|
133
|
-
# Transform a
|
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
|
4
|
-
module GraphQL
|
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 (
|
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,
|
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,
|
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
|
-
|
49
|
+
skip_from(:input, :created_at, :updated_at)
|
36
50
|
|
37
|
-
|
51
|
+
step(:start) { GraphQL.enable_ar_adapter(adapter_name) }
|
52
|
+
step(:enums) { build_enum_types }
|
38
53
|
|
39
|
-
|
40
|
-
|
41
|
-
|
54
|
+
step(:object) do
|
55
|
+
build_attribute_fields(self)
|
56
|
+
build_reflection_fields(self)
|
42
57
|
end
|
43
58
|
|
44
|
-
|
59
|
+
step(:interface) do
|
45
60
|
build_attribute_fields(self)
|
46
61
|
build_reflection_fields(self)
|
47
62
|
end
|
48
63
|
|
49
|
-
|
50
|
-
extra =
|
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
|
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? &&
|
75
|
+
if column.default.present? && has_field?(column.name)
|
61
76
|
end
|
62
77
|
end
|
63
78
|
|
64
|
-
|
65
|
-
|
66
|
-
|
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,
|
70
|
-
|
71
|
-
before_resolve
|
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
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
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("
|
82
|
-
argument
|
83
|
-
|
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("
|
89
|
-
|
90
|
-
|
91
|
-
|
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
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
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
|
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
|
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
|
-
|
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
|
-
|
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
|
153
|
-
def load_records(scope =
|
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
|
158
|
-
def load_record(scope =
|
159
|
-
scope
|
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
|
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
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
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[:
|
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
|
-
#
|
192
|
-
def
|
193
|
-
|
194
|
-
|
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
|
-
|
197
|
-
|
198
|
-
|
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
|
-
|
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
|
225
|
-
def
|
226
|
-
|
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
|
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
|