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
@@ -1,40 +1,40 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
module Helpers
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
module Helpers
|
6
6
|
# Helper module that allows other objects to hold schema fields (query,
|
7
7
|
# mutation, and subscription fields). Works very similar to fields, but
|
8
8
|
# they are placed in different places regarding their type.
|
9
9
|
module WithSchemaFields
|
10
|
-
SCHEMA_FIELD_TYPES = %i[query mutation subscription].map do |key|
|
11
|
-
[key, "_#{key.to_s.classify}"]
|
12
|
-
end.to_h.freeze
|
13
|
-
|
14
10
|
TYPE_FIELD_CLASS = {
|
15
11
|
query: 'OutputField',
|
16
12
|
mutation: 'MutationField',
|
17
|
-
subscription: '
|
13
|
+
subscription: 'SubscriptionField',
|
18
14
|
}.freeze
|
19
15
|
|
20
|
-
module ClassMethods
|
16
|
+
module ClassMethods
|
21
17
|
def inherited(subclass)
|
22
18
|
super if defined? super
|
23
19
|
|
24
|
-
|
25
|
-
fields = instance_variable_defined?("@#{
|
26
|
-
fields = fields ? instance_variable_get("@#{
|
27
|
-
fields.each_value { |field| subclass.add_proxy_field(
|
20
|
+
TYPE_FIELD_CLASS.each_key do |type|
|
21
|
+
fields = instance_variable_defined?("@#{type}_fields")
|
22
|
+
fields = fields ? instance_variable_get("@#{type}_fields") : EMPTY_HASH
|
23
|
+
fields.each_value { |field| subclass.add_proxy_field(type, field) }
|
28
24
|
end
|
29
25
|
end
|
30
26
|
end
|
31
27
|
|
32
|
-
|
33
|
-
|
28
|
+
# Helper class to be used as the +self+ in configuration blocks
|
29
|
+
ScopedConfig = Struct.new(:source, :type) do
|
30
|
+
def argument(*args, **xargs, &block)
|
34
31
|
xargs[:owner] ||= source
|
35
32
|
GraphQL::Argument.new(*args, **xargs, &block)
|
36
33
|
end
|
37
34
|
|
35
|
+
alias arg argument
|
36
|
+
alias kind type
|
37
|
+
|
38
38
|
private
|
39
39
|
|
40
40
|
def respond_to_missing?(method_name, include_private = false)
|
@@ -54,27 +54,44 @@ module Rails # :nodoc:
|
|
54
54
|
typed_methods = typed_methods.zip(typed_methods).to_h
|
55
55
|
typed_methods.merge(
|
56
56
|
fields: :fields_for,
|
57
|
+
fields?: :fields_for?,
|
57
58
|
safe_field: :safe_add_field,
|
58
59
|
field: :add_field,
|
59
60
|
proxy_field: :add_proxy_field,
|
60
|
-
|
61
|
+
import: :import_into,
|
62
|
+
import_all: :import_all_into,
|
61
63
|
)
|
62
64
|
end
|
63
65
|
end
|
64
66
|
end
|
65
67
|
|
66
|
-
def self.extended(other)
|
68
|
+
def self.extended(other)
|
67
69
|
other.extend(WithSchemaFields::ClassMethods)
|
68
70
|
end
|
69
71
|
|
70
72
|
# A little helper for getting the list of fields of a given type
|
71
|
-
def fields_for(type)
|
72
|
-
|
73
|
+
def fields_for(type, initialize = nil)
|
74
|
+
if instance_variable_defined?(ivar = :"@#{type}_fields")
|
75
|
+
instance_variable_get(ivar)
|
76
|
+
elsif initialize
|
77
|
+
instance_variable_set(ivar, Concurrent::Map.new)
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
# Allow hash access with the type or the type and the name
|
82
|
+
def [](type, name = nil)
|
83
|
+
name.nil? ? fields_for(type) : find_field(type, name)
|
84
|
+
end
|
85
|
+
|
86
|
+
# Check if there are fields set fot he given type
|
87
|
+
def fields_for?(type)
|
88
|
+
public_send("#{type}_fields?")
|
73
89
|
end
|
74
90
|
|
75
91
|
# Return the object name for a given +type+ of list of fields
|
76
92
|
def type_name_for(type)
|
77
|
-
|
93
|
+
method_name = :"#{type}_type_name"
|
94
|
+
public_send(method_name) if respond_to?(method_name)
|
78
95
|
end
|
79
96
|
|
80
97
|
# Only add the field if it is not already defined
|
@@ -88,36 +105,40 @@ module Rails # :nodoc:
|
|
88
105
|
# Add a new field of the give +type+
|
89
106
|
# See {OutputField}[rdoc-ref:Rails::GraphQL::OutputField] class.
|
90
107
|
def add_field(type, *args, **xargs, &block)
|
91
|
-
xargs[:owner] = self
|
92
108
|
klass = Field.const_get(TYPE_FIELD_CLASS[type])
|
93
|
-
object = klass.new(*args, **xargs, &block)
|
109
|
+
object = klass.new(*args, **xargs, owner: self, &block)
|
94
110
|
|
95
|
-
raise DuplicatedError,
|
111
|
+
raise DuplicatedError, (+<<~MSG).squish if has_field?(type, object.name)
|
96
112
|
The "#{object.name}" field is already defined on #{type} fields and
|
97
113
|
cannot be redefined.
|
98
114
|
MSG
|
99
115
|
|
100
|
-
fields_for(type)[object.name] = object
|
116
|
+
fields_for(type, true)[object.name] = object
|
101
117
|
rescue DefinitionError => e
|
102
|
-
raise e.class, e.message
|
118
|
+
raise e.class, +"#{e.message}\n Defined at: #{caller(2)[0]}"
|
103
119
|
end
|
104
120
|
|
105
121
|
# Add a new field to the list but use a proxy instead of a hard copy of
|
106
122
|
# a given +field+
|
107
123
|
def add_proxy_field(type, field, *args, **xargs, &block)
|
124
|
+
field = field.field if field.is_a?(Module) && field <= Alternative::Query
|
125
|
+
raise ArgumentError, (+<<~MSG).squish if field.schema_type != type
|
126
|
+
A #{field.schema_type} field cannot be added as a #{type} field.
|
127
|
+
MSG
|
128
|
+
|
108
129
|
klass = Field.const_get(TYPE_FIELD_CLASS[type])
|
109
|
-
raise ArgumentError,
|
130
|
+
raise ArgumentError, (+<<~MSG).squish unless field.is_a?(klass)
|
110
131
|
The #{field.class.name} is not a valid field for #{type} fields.
|
111
132
|
MSG
|
112
133
|
|
113
134
|
xargs[:owner] = self
|
114
135
|
object = field.to_proxy(*args, **xargs, &block)
|
115
|
-
raise DuplicatedError,
|
136
|
+
raise DuplicatedError, (+<<~MSG).squish if has_field?(type, object.name)
|
116
137
|
The #{field.name.inspect} field is already defined on #{type} fields
|
117
138
|
and cannot be replaced.
|
118
139
|
MSG
|
119
140
|
|
120
|
-
fields_for(type)[object.name] = object
|
141
|
+
fields_for(type, true)[object.name] = object
|
121
142
|
end
|
122
143
|
|
123
144
|
# Find a field and then change some flexible attributes of it
|
@@ -145,6 +166,7 @@ module Rails # :nodoc:
|
|
145
166
|
# Check if a field of the given +type+ exists. The +object+ can be the
|
146
167
|
# +gql_name+, +name+, or an actual field.
|
147
168
|
def has_field?(type, object)
|
169
|
+
return false unless fields_for?(type)
|
148
170
|
object = object.name if object.is_a?(GraphQL::Field)
|
149
171
|
fields_for(type).key?(object.is_a?(String) ? object.underscore.to_sym : object)
|
150
172
|
end
|
@@ -152,69 +174,144 @@ module Rails # :nodoc:
|
|
152
174
|
# Find a specific field on the given +type+ list. The +object+ can be
|
153
175
|
# the +gql_name+, +name+, or an actual field.
|
154
176
|
def find_field(type, object)
|
177
|
+
return unless fields_for?(type)
|
155
178
|
object = object.name if object.is_a?(GraphQL::Field)
|
156
179
|
fields_for(type)[object.is_a?(String) ? object.underscore.to_sym : object]
|
157
180
|
end
|
158
181
|
|
159
182
|
# If the field is not found it will raise an exception
|
160
183
|
def find_field!(type, object)
|
161
|
-
find_field(type, object) || raise(
|
184
|
+
find_field(type, object) || raise(NotFoundError, (+<<~MSG).squish)
|
162
185
|
The #{object.inspect} field on #{type} is not defined yet.
|
163
186
|
MSG
|
164
187
|
end
|
165
188
|
|
166
|
-
# Get the list of GraphQL names of all the fields
|
189
|
+
# Get the list of GraphQL names of all the fields defined
|
167
190
|
def field_names_for(type, enabled_only = true)
|
168
|
-
(enabled_only ?
|
169
|
-
|
191
|
+
source = (enabled_only ? enabled_fields_from(type) : lazy_each_field_from(type))
|
192
|
+
source&.map(&:gql_name)&.eager
|
193
|
+
end
|
194
|
+
|
195
|
+
# Return a lazy enumerator for enabled fields
|
196
|
+
def enabled_fields_from(type)
|
197
|
+
lazy_each_field_from(type)&.select(&:enabled?)
|
170
198
|
end
|
171
199
|
|
172
200
|
# Run a configuration block for the given +type+
|
173
201
|
def configure_fields(type, &block)
|
174
|
-
|
202
|
+
WithSchemaFields::ScopedConfig.new(self, type).instance_exec(&block)
|
203
|
+
end
|
204
|
+
|
205
|
+
# Import a class of fields into the given section of schema fields
|
206
|
+
def import_into(type, source)
|
207
|
+
# Import an alternative declaration of a field
|
208
|
+
if source.is_a?(Module) && source <= Alternative::Query
|
209
|
+
return add_proxy_field(type, source.field)
|
210
|
+
end
|
211
|
+
|
212
|
+
case source
|
213
|
+
when Array
|
214
|
+
# Import a list of fields
|
215
|
+
source.each { |field| add_proxy_field(type, field) }
|
216
|
+
when Hash, Concurrent::Map
|
217
|
+
# Import a keyed list of fields
|
218
|
+
source.each_value { |field| add_proxy_field(type, field) }
|
219
|
+
when Helpers::WithFields
|
220
|
+
# Import a set of fields
|
221
|
+
source.fields.each_value { |field| add_proxy_field(type, field) }
|
222
|
+
when Helpers::WithSchemaFields
|
223
|
+
# Import other schema fields
|
224
|
+
(type == :all ? TYPE_FIELD_CLASS.each_key : type.then).each do |import_type|
|
225
|
+
source.fields_for(import_type)&.each_value do |field|
|
226
|
+
add_proxy_field(import_type, field)
|
227
|
+
end
|
228
|
+
end
|
229
|
+
else
|
230
|
+
return if GraphQL.config.silence_import_warnings
|
231
|
+
GraphQL.logger.warn(+"Unable to import #{source.inspect} into #{self.name}.")
|
232
|
+
end
|
233
|
+
end
|
234
|
+
|
235
|
+
# Import a module containing several classes to be imported
|
236
|
+
# TODO: Maybe add deepness into the recursive value
|
237
|
+
def import_all_into(type, mod, recursive: false, **xargs)
|
238
|
+
mod.constants.each do |const_name|
|
239
|
+
object = mod.const_get(const_name)
|
240
|
+
|
241
|
+
import_into(type, object, **xargs) if object.is_a?(Class)
|
242
|
+
import_all_into(type, object, recursive: recursive, **xargs) if recursive && object.is_a?(Module)
|
243
|
+
end
|
244
|
+
end
|
245
|
+
|
246
|
+
# Same as above, but if the name of the module being imported already
|
247
|
+
# dictates the type, skip specifying it
|
248
|
+
def import_all(mod, **xargs)
|
249
|
+
type = mod.name.demodulize.underscore.singularize
|
250
|
+
type = TYPE_FIELD_CLASS.each_key.find { |key| key.to_s == type }
|
251
|
+
return import_all_into(type, mod, **xargs) unless type.nil?
|
252
|
+
|
253
|
+
raise(::ArgumentError, (+<<~MSG).squish)
|
254
|
+
Unable to extract type from #{mod.name}.
|
255
|
+
Please use "import_all_into(_type_, #{mod.name}) instead."
|
256
|
+
MSG
|
175
257
|
end
|
176
258
|
|
177
259
|
# Validate all the fields to make sure the definition is valid
|
178
260
|
def validate!(*)
|
179
261
|
super if defined? super
|
180
262
|
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
next unless instance_variable_defined?("@#{kind}_fields")
|
185
|
-
instance_variable_get("@#{kind}_fields")&.each_value(&:validate!)
|
263
|
+
TYPE_FIELD_CLASS.each_key do |type|
|
264
|
+
next unless public_send("#{type}_fields?")
|
265
|
+
fields_for(type).each_value(&:validate!)
|
186
266
|
end
|
187
267
|
end
|
188
268
|
|
189
|
-
|
269
|
+
# Find a specific field using its id as +gql_name.type+
|
270
|
+
def find_by_gid(gid)
|
271
|
+
find_field!(gid.scope, gid.name)
|
272
|
+
end
|
273
|
+
|
274
|
+
TYPE_FIELD_CLASS.each_key do |type|
|
190
275
|
class_eval <<-RUBY, __FILE__, __LINE__ + 1
|
191
|
-
def #{
|
192
|
-
|
276
|
+
def #{type}_fields?
|
277
|
+
defined?(@#{type}_fields) && @#{type}_fields.present?
|
193
278
|
end
|
194
279
|
|
195
|
-
def #{
|
196
|
-
|
280
|
+
def #{type}_fields(&block)
|
281
|
+
configure_fields(:#{type}, &block) if block.present?
|
282
|
+
@#{type}_fields if defined?(@#{type}_fields)
|
197
283
|
end
|
198
284
|
|
199
|
-
def #{
|
200
|
-
|
201
|
-
configure_fields(:#{kind}, &block)
|
202
|
-
@#{kind}_fields
|
285
|
+
def add_#{type}_field(*args, **xargs, &block)
|
286
|
+
add_field(:#{type}, *args, **xargs, &block)
|
203
287
|
end
|
204
288
|
|
205
|
-
def #{
|
206
|
-
|
289
|
+
def #{type}_field?(name)
|
290
|
+
has_field?(:#{type}, name)
|
207
291
|
end
|
208
292
|
|
209
|
-
def #{
|
293
|
+
def #{type}_field(name)
|
294
|
+
find_field(:#{type}, name)
|
295
|
+
end
|
296
|
+
|
297
|
+
def #{type}_type_name
|
298
|
+
source = (respond_to?(:config) ? config : GraphQL.config)
|
299
|
+
source.schema_type_names[:#{type}]
|
300
|
+
end
|
301
|
+
|
302
|
+
def #{type}_type
|
303
|
+
return unless #{type}_fields?
|
304
|
+
|
210
305
|
OpenStruct.new(
|
306
|
+
name: "\#{name}[:#{type}]",
|
211
307
|
kind: :object,
|
212
308
|
object?: true,
|
213
309
|
kind_enum: 'OBJECT',
|
214
|
-
fields:
|
215
|
-
gql_name:
|
216
|
-
interfaces: nil,
|
310
|
+
fields: @#{type}_fields,
|
311
|
+
gql_name: #{type}_type_name,
|
217
312
|
description: nil,
|
313
|
+
output_type?: true,
|
314
|
+
operational?: true,
|
218
315
|
interfaces?: false,
|
219
316
|
internal?: false,
|
220
317
|
).freeze
|
@@ -224,9 +321,18 @@ module Rails # :nodoc:
|
|
224
321
|
|
225
322
|
protected
|
226
323
|
|
227
|
-
#
|
228
|
-
def
|
229
|
-
|
324
|
+
# A little helper to define arguments using the :arguments key
|
325
|
+
def argument(*args, **xargs, &block)
|
326
|
+
xargs[:owner] = self
|
327
|
+
GraphQL::Argument.new(*args, **xargs, &block)
|
328
|
+
end
|
329
|
+
|
330
|
+
alias arg argument
|
331
|
+
|
332
|
+
private
|
333
|
+
|
334
|
+
def lazy_each_field_from(type)
|
335
|
+
fields_for(type).each_pair.lazy.each_entry.map(&:last) if fields_for?(type)
|
230
336
|
end
|
231
337
|
end
|
232
338
|
end
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
module Helpers
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
module Helpers
|
6
6
|
# Helper that contains the main exceptions and validation process for a
|
7
7
|
# value against a type
|
8
8
|
module WithValidator
|
@@ -22,15 +22,15 @@ module Rails # :nodoc:
|
|
22
22
|
message, idx = result
|
23
23
|
|
24
24
|
base_error = idx.present? \
|
25
|
-
? "#{ordinalize(idx + 1)} value of the #{gql_name} #{type}" \
|
26
|
-
: "#{gql_name} #{type} value"
|
25
|
+
? +"#{ordinalize(idx + 1)} value of the #{gql_name} #{type}" \
|
26
|
+
: +"#{gql_name} #{type} value"
|
27
27
|
|
28
|
-
raise InvalidValueError, "The #{base_error} #{message}."
|
28
|
+
raise InvalidValueError, +"The #{base_error} #{message}."
|
29
29
|
end
|
30
30
|
|
31
31
|
private
|
32
32
|
|
33
|
-
def validate_array(value)
|
33
|
+
def validate_array(value)
|
34
34
|
return 'is not an array' unless value.is_a?(Enumerable)
|
35
35
|
|
36
36
|
value.each_with_index do |val, idx|
|
@@ -39,11 +39,11 @@ module Rails # :nodoc:
|
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
42
|
-
def validate_null(value, checker = :null?)
|
42
|
+
def validate_null(value, checker = :null?)
|
43
43
|
'can not be null' if value.nil? && !send(checker)
|
44
44
|
end
|
45
45
|
|
46
|
-
def validate_type(value)
|
46
|
+
def validate_type(value)
|
47
47
|
'is invalid' if leaf_type? && !type_klass.valid_output?(value)
|
48
48
|
end
|
49
49
|
end
|
@@ -1,21 +1,28 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
# All helpers that allow this gem to be flexible and extendable to any other
|
6
|
+
# sources of objects and other gems as well
|
7
|
+
module Helpers
|
6
8
|
extend ActiveSupport::Autoload
|
7
9
|
|
8
10
|
autoload :AttributeDelegator
|
9
11
|
autoload :InheritedCollection
|
12
|
+
autoload :Instantiable
|
10
13
|
autoload :LeafFromAr
|
14
|
+
autoload :Unregisterable
|
11
15
|
autoload :Registerable
|
12
16
|
|
13
17
|
autoload :WithArguments
|
14
18
|
autoload :WithAssignment
|
15
19
|
autoload :WithCallbacks
|
16
20
|
autoload :WithDirectives
|
21
|
+
autoload :WithDescription
|
17
22
|
autoload :WithEvents
|
18
23
|
autoload :WithFields
|
24
|
+
autoload :WithGlobalID
|
25
|
+
autoload :WithName
|
19
26
|
autoload :WithNamespace
|
20
27
|
autoload :WithOwner
|
21
28
|
autoload :WithSchemaFields
|
@@ -1,53 +1,60 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
5
|
# Module related to some methods regarding the introspection of a schema
|
6
6
|
module Introspection
|
7
|
-
|
8
|
-
def inherited(subclass)
|
9
|
-
super if defined? super
|
10
|
-
|
11
|
-
subclass.query_fields do
|
12
|
-
field(:__schema, '__Schema', null: false) do
|
13
|
-
resolve { schema }
|
14
|
-
end
|
15
|
-
|
16
|
-
field(:__type, '__Type') do
|
17
|
-
argument(:name, :string, null: false)
|
18
|
-
resolve { schema.find_type(argument(:name)) }
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
|
-
def self.extended(other) # :nodoc:
|
25
|
-
other.extend(Introspection::ClassMethods)
|
26
|
-
end
|
27
|
-
|
28
|
-
# When register is called, add introspection fields?
|
7
|
+
# When register is called, add introspection related elements
|
29
8
|
def register!(*)
|
30
9
|
super if defined? super
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
10
|
+
enable_introspection! if !introspection? && config.enable_introspection
|
11
|
+
|
12
|
+
# Although this is not necessary besides for introspection, there is no
|
13
|
+
# real disadvantage on adding it
|
14
|
+
Helpers::WithSchemaFields::TYPE_FIELD_CLASS.each_key do |type|
|
15
|
+
GraphQL.type_map.register_alias(type_name_for(type), namespace: namespace) do
|
16
|
+
result = public_send(:"#{type}_type")
|
17
|
+
type.eql?(:query) || result.present? ? result : nil
|
37
18
|
end
|
38
19
|
end
|
39
20
|
end
|
40
21
|
|
41
22
|
# Check if the schema has introspection enabled
|
42
23
|
def introspection?
|
43
|
-
|
24
|
+
false
|
44
25
|
end
|
45
26
|
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
27
|
+
protected
|
28
|
+
|
29
|
+
# Enable introspection fields
|
30
|
+
def enable_introspection!
|
31
|
+
redefine_singleton_method(:introspection?) { true }
|
32
|
+
introspection_dependencies!
|
33
|
+
|
34
|
+
safe_add_field(:query, :__schema, '__Schema', null: false) do
|
35
|
+
resolve { schema }
|
36
|
+
end
|
37
|
+
|
38
|
+
safe_add_field(:query, :__type, '__Type') do
|
39
|
+
argument(:name, :string, null: false)
|
40
|
+
resolve { schema.find_type(argument(:name)) }
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
# Add the introspection dependencies, but only when necessary
|
45
|
+
def introspection_dependencies!
|
46
|
+
GraphQL.type_map.add_dependencies([
|
47
|
+
"#{__dir__}/type/enum/directive_location_enum",
|
48
|
+
"#{__dir__}/type/enum/type_kind_enum",
|
49
|
+
|
50
|
+
"#{__dir__}/type/object/directive_object",
|
51
|
+
"#{__dir__}/type/object/enum_value_object",
|
52
|
+
"#{__dir__}/type/object/field_object",
|
53
|
+
"#{__dir__}/type/object/input_value_object",
|
54
|
+
"#{__dir__}/type/object/schema_object",
|
55
|
+
"#{__dir__}/type/object/type_object",
|
56
|
+
], to: :base)
|
57
|
+
end
|
51
58
|
end
|
52
59
|
end
|
53
60
|
end
|