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,11 +1,11 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
class Request
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Request
|
6
6
|
# = GraphQL Request Errors
|
7
7
|
#
|
8
|
-
# This class is inspired by +ActiveModel::
|
8
|
+
# This class is inspired by +ActiveModel::Errors+. The idea is to hold all
|
9
9
|
# the errors that happened during the execution of a request. It also
|
10
10
|
# helps to export such information to the result object.
|
11
11
|
class Errors
|
@@ -27,7 +27,7 @@ module Rails # :nodoc:
|
|
27
27
|
@items.deep_dup
|
28
28
|
end
|
29
29
|
|
30
|
-
# Add +message+ to the list of errors. Any other
|
30
|
+
# Add +message+ to the list of errors. Any other keyword argument will
|
31
31
|
# be used on set on the +:extensions+ part.
|
32
32
|
#
|
33
33
|
# ==== Options
|
@@ -42,12 +42,22 @@ module Rails # :nodoc:
|
|
42
42
|
item['locations'] ||= [{ line: line.to_i, column: col.to_i }] \
|
43
43
|
if line.present? && col.present?
|
44
44
|
|
45
|
-
item['path'] = path if path.present? && path.is_a?(Array)
|
45
|
+
item['path'] = path if path.present? && path.is_a?(::Array)
|
46
46
|
item['extensions'] = extra.deep_stringify_keys if extra.present?
|
47
47
|
item['locations']&.map!(&:stringify_keys)
|
48
48
|
|
49
49
|
@items << item.compact
|
50
50
|
end
|
51
|
+
|
52
|
+
# Dump the necessary information from errors to a cached operation
|
53
|
+
def cache_dump
|
54
|
+
@items.select { |item| item.dig('extensions', 'stage') == 'organize' }
|
55
|
+
end
|
56
|
+
|
57
|
+
# Load the necessary information from a cached request data
|
58
|
+
def cache_load(data)
|
59
|
+
@items += data
|
60
|
+
end
|
51
61
|
end
|
52
62
|
end
|
53
63
|
end
|
@@ -1,18 +1,19 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
class Request
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Request
|
6
6
|
# = GraphQL Request Event
|
7
7
|
#
|
8
8
|
# A small extension of the original event to support extra methods and
|
9
9
|
# helpers when performing events during a request
|
10
10
|
class Event < GraphQL::Event
|
11
|
-
OBJECT_BASED_READERS = %i[fragment
|
11
|
+
OBJECT_BASED_READERS = %i[fragment spread].freeze
|
12
12
|
|
13
|
-
delegate :
|
13
|
+
delegate :errors, :context, :extensions, to: :request
|
14
14
|
delegate :instance_for, to: :strategy
|
15
|
-
delegate :memo, to: :source
|
15
|
+
delegate :memo, :schema, to: :source
|
16
|
+
delegate :subscription_provider, to: :schema
|
16
17
|
|
17
18
|
attr_reader :strategy, :request, :index
|
18
19
|
|
@@ -33,7 +34,16 @@ module Rails # :nodoc:
|
|
33
34
|
super(name, source, **data)
|
34
35
|
end
|
35
36
|
|
37
|
+
# TODO: Implement a faster way to check if if the event is from the
|
38
|
+
# same source by separating exclusive events beforehand
|
39
|
+
|
40
|
+
# If the source is a field, than also compare to the actual field
|
41
|
+
def same_source?(other)
|
42
|
+
super || (source.try(:kind) == :field && source.field == other)
|
43
|
+
end
|
44
|
+
|
36
45
|
# Provide a way to access the current field value
|
46
|
+
# TODO: Maybe change this to +current+ to get the value by reference
|
37
47
|
def current_value
|
38
48
|
resolver&.current_value
|
39
49
|
end
|
@@ -45,6 +55,11 @@ module Rails # :nodoc:
|
|
45
55
|
resolver&.override_value(value)
|
46
56
|
end
|
47
57
|
|
58
|
+
# Get the operation for the current source
|
59
|
+
def operation
|
60
|
+
(object.kind == :operation) ? object : source.operation
|
61
|
+
end
|
62
|
+
|
48
63
|
# Return the strategy context as the resolver
|
49
64
|
def resolver
|
50
65
|
strategy.context
|
@@ -52,7 +67,7 @@ module Rails # :nodoc:
|
|
52
67
|
|
53
68
|
# Return the actual field when the source is a request field
|
54
69
|
def field
|
55
|
-
source.field if source.try(:kind)
|
70
|
+
source.field if source.try(:kind) == :field
|
56
71
|
end
|
57
72
|
|
58
73
|
# Check if the event source is of the given +type+
|
@@ -99,7 +114,7 @@ module Rails # :nodoc:
|
|
99
114
|
# it will return the object
|
100
115
|
def method_missing(method_name, *args, **xargs, &block)
|
101
116
|
if OBJECT_BASED_READERS.include?(method_name)
|
102
|
-
object if object.kind
|
117
|
+
object if object.kind == method_name
|
103
118
|
elsif current_value&.respond_to?(method_name)
|
104
119
|
current_value&.public_send(method_name, *args, **xargs, &block)
|
105
120
|
else
|
@@ -1,62 +1,104 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
class Request
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Request
|
6
6
|
# Helper module to collect the directives from fragments, operations, and
|
7
7
|
# fields.
|
8
8
|
module Directives
|
9
9
|
# Get the list of listeners from directives set during the request only
|
10
|
-
def
|
11
|
-
|
10
|
+
def directive_listeners
|
11
|
+
return unless directives?
|
12
|
+
return @directive_listeners if defined?(@directive_listeners)
|
13
|
+
@directive_listeners = directives.map(&:all_listeners).compact.reduce(:+)
|
12
14
|
end
|
13
15
|
|
16
|
+
alias all_listeners directive_listeners
|
17
|
+
|
14
18
|
# Get the list of events from directives set during the request only and
|
15
19
|
# then caches it by request
|
16
|
-
def
|
17
|
-
|
18
|
-
|
20
|
+
def directive_events
|
21
|
+
return unless directives?
|
22
|
+
@directive_events ||= begin
|
23
|
+
directives.map(&:all_events).compact.inject({}) do |lhash, rhash|
|
24
|
+
Helpers.merge_hash_array(lhash, rhash)
|
25
|
+
end
|
19
26
|
end
|
20
27
|
end
|
21
28
|
|
29
|
+
alias all_events directive_events
|
30
|
+
|
31
|
+
# Check if the current component is using a directive
|
32
|
+
# TODO: This does not work with the instance
|
33
|
+
def using?(item)
|
34
|
+
return false unless directives?
|
35
|
+
|
36
|
+
directive = (item.is_a?(Symbol) || item.is_a?(String)) ? find_directive!(item) : item
|
37
|
+
(directive < GraphQL::Directive) && directives.any?(directive)
|
38
|
+
end
|
39
|
+
|
40
|
+
# Build the cache object
|
41
|
+
def cache_dump
|
42
|
+
return super unless defined?(@directives)
|
43
|
+
|
44
|
+
super.merge(directives: all_to_gid(@directives.transform_values))
|
45
|
+
end
|
46
|
+
|
47
|
+
# Organize from cache data
|
48
|
+
def cache_load(data)
|
49
|
+
return super unless data.key?(:directives)
|
50
|
+
|
51
|
+
@directives = all_from_gid(data[:directives].transform_values).freeze
|
52
|
+
|
53
|
+
super
|
54
|
+
end
|
55
|
+
|
22
56
|
protected
|
23
57
|
|
24
58
|
# Make sure to always return a set
|
25
59
|
def directives
|
26
|
-
@directives
|
60
|
+
@directives if directives?
|
27
61
|
end
|
28
62
|
|
29
|
-
|
63
|
+
# Check if any execution directive was added
|
64
|
+
def directives?
|
65
|
+
defined?(@directives)
|
66
|
+
end
|
30
67
|
|
31
68
|
# Helper parser for directives that also collect necessary variables
|
32
|
-
def parse_directives(location = nil)
|
33
|
-
|
34
|
-
|
35
|
-
visitor.collect_directives(*data[:directives]) do |data|
|
36
|
-
instance = find_directive!(data[:name])
|
69
|
+
def parse_directives(nodes, location = nil)
|
70
|
+
return if nodes.nil?
|
37
71
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
72
|
+
list = nil
|
73
|
+
nodes.each do |(name, arguments)|
|
74
|
+
instance = find_directive!(name.to_s)
|
75
|
+
values = arguments&.each_with_object({}) do |(name, value, var_name), hash|
|
76
|
+
hash[name.to_s] = var_name.nil? ? value : var_name
|
42
77
|
end
|
43
78
|
|
44
|
-
|
45
|
-
|
79
|
+
args = directive_arguments(instance)
|
80
|
+
args = collect_arguments(args, values)
|
46
81
|
|
47
|
-
|
48
|
-
|
49
|
-
|
82
|
+
(list ||= []) << instance.new(request.build(Request::Arguments, args))
|
83
|
+
rescue ArgumentsError => error
|
84
|
+
raise ArgumentsError, (+<<~MSG).squish
|
85
|
+
Invalid arguments for @#{instance.gql_name} directive
|
86
|
+
added to #{gql_name} #{kind}: #{error.message}.
|
87
|
+
MSG
|
50
88
|
end
|
51
89
|
|
90
|
+
event = Event.new(:attach, strategy, self, phase: :execution)
|
91
|
+
list = GraphQL.directives_to_set(list, [], event, location: location || kind)
|
92
|
+
|
52
93
|
@directives = list.freeze
|
53
94
|
end
|
54
95
|
|
55
96
|
# Get and cache all the arguments for this given +directive+
|
56
97
|
def directive_arguments(directive)
|
57
|
-
request.
|
58
|
-
|
59
|
-
|
98
|
+
request.nested_cache(:arguments, directive) do
|
99
|
+
directive.all_arguments&.each_value&.with_object({}) do |directive, hash|
|
100
|
+
hash[directive.gql_name] = directive
|
101
|
+
end
|
60
102
|
end
|
61
103
|
end
|
62
104
|
end
|
@@ -1,43 +1,70 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
class Request
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Request
|
6
6
|
# Helper module to collect the fields from fragments, operations, and also
|
7
7
|
# other fields.
|
8
8
|
module SelectionSet
|
9
9
|
attr_reader :selection
|
10
10
|
|
11
|
+
# Build the cache object
|
12
|
+
def cache_dump
|
13
|
+
return super unless defined?(@selection)
|
14
|
+
|
15
|
+
selection = @selection.transform_values do |field|
|
16
|
+
field.cache_dump.merge(type: field.class)
|
17
|
+
end
|
18
|
+
|
19
|
+
super.merge(selection: selection)
|
20
|
+
end
|
21
|
+
|
22
|
+
# Organize from cache data
|
23
|
+
def cache_load(data)
|
24
|
+
return super unless data.key?(:selection)
|
25
|
+
|
26
|
+
@selection = data[:selection].transform_values do |data|
|
27
|
+
component = request.build_from_cache(data[:type])
|
28
|
+
component.instance_variable_set(:@parent, self)
|
29
|
+
component.cache_load(data)
|
30
|
+
component
|
31
|
+
end.freeze
|
32
|
+
|
33
|
+
super
|
34
|
+
end
|
35
|
+
|
11
36
|
protected
|
12
37
|
|
13
|
-
# Helper parser for selection fields that also
|
38
|
+
# Helper parser for selection fields that also assign the actual
|
14
39
|
# field defined under the schema structure
|
15
|
-
def parse_selection
|
40
|
+
def parse_selection(nodes)
|
41
|
+
return if nodes.nil?
|
42
|
+
|
16
43
|
@selection = {}
|
17
44
|
assigners = Hash.new { |h, k| h[k] = [] }
|
18
45
|
|
19
|
-
|
20
|
-
component = add_component(
|
21
|
-
assigners[component.name] << component if component.assignable?
|
22
|
-
end
|
46
|
+
nodes.each do |node|
|
47
|
+
component = add_component(node)
|
48
|
+
assigners[component.name.to_s] << component if component.assignable?
|
49
|
+
end
|
23
50
|
|
24
|
-
|
51
|
+
assign_fields!(assigners)
|
25
52
|
@selection.freeze
|
26
53
|
end
|
27
54
|
|
28
55
|
# Using +fields_source+, find the needed ones to be assigned to the
|
29
56
|
# current requested fields. As shown by benchmark, since the index is
|
30
57
|
# based on Symbols, the best way to find +gql_name+ based fields is
|
31
|
-
# through
|
32
|
-
def
|
58
|
+
# through iteration, then search and assign. Complexity O(n)
|
59
|
+
def assign_fields!(assigners)
|
33
60
|
pending = assigners.map(&:size).reduce(:+) || 0
|
34
61
|
return if pending.zero?
|
35
62
|
|
36
|
-
fields_source
|
63
|
+
fields_source&.each_value do |field|
|
37
64
|
next unless assigners.key?(field.gql_name)
|
38
65
|
|
39
66
|
items = assigners[field.gql_name]
|
40
|
-
items.each_with_object(field).each(&:
|
67
|
+
items.each_with_object(field).each(&:assign_to)
|
41
68
|
break if (pending -= items.size) === 0
|
42
69
|
end
|
43
70
|
end
|
@@ -45,20 +72,21 @@ module Rails # :nodoc:
|
|
45
72
|
# Recursive operation that perform the organization step for the
|
46
73
|
# selection
|
47
74
|
def organize_fields
|
48
|
-
|
75
|
+
return unless run_selection?
|
76
|
+
selection.each_value(&:organize!)
|
49
77
|
end
|
50
78
|
|
51
79
|
# Find all the fields that have a prepare step and execute them
|
52
80
|
def prepare_fields
|
53
|
-
return unless
|
54
|
-
|
81
|
+
return unless run_selection?
|
82
|
+
selection.each_value(&:prepare!)
|
55
83
|
end
|
56
84
|
|
57
85
|
# Trigger the process of resolving the value of all the fields. Since
|
58
86
|
# complex object may or may not be inside an array, this helps to
|
59
87
|
# decide if a new stack should be started or not
|
60
88
|
def resolve_fields(object = nil)
|
61
|
-
return unless
|
89
|
+
return unless run_selection?
|
62
90
|
|
63
91
|
items = selection.each_value
|
64
92
|
items = items.each_with_object(object) unless object.nil?
|
@@ -70,15 +98,19 @@ module Rails # :nodoc:
|
|
70
98
|
|
71
99
|
private
|
72
100
|
|
73
|
-
def
|
74
|
-
|
101
|
+
def run_selection?
|
102
|
+
selection.present? && !unresolvable?
|
103
|
+
end
|
104
|
+
|
105
|
+
def add_component(node)
|
106
|
+
item_name = node[1] || node[0]
|
75
107
|
|
76
|
-
if
|
77
|
-
selection[selection.size] = request.build(Component::Spread, self, node
|
78
|
-
elsif
|
79
|
-
selection[item_name] ||= request.build(Component::Typename, self, node
|
108
|
+
if node.of_type?(:spread)
|
109
|
+
selection[selection.size] = request.build(Component::Spread, self, node)
|
110
|
+
elsif node[0] === '__typename'
|
111
|
+
selection[item_name] ||= request.build(Component::Typename, self, node)
|
80
112
|
else
|
81
|
-
selection[item_name] ||= request.build(Component::Field, self, node
|
113
|
+
selection[item_name] ||= request.build(Component::Field, self, node)
|
82
114
|
end
|
83
115
|
end
|
84
116
|
end
|
@@ -1,25 +1,27 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
class Request
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Request
|
6
6
|
# A set of helper methods to write a value to the response
|
7
7
|
module ValueWriters
|
8
8
|
# TODO: Maybe move this to a setting so it allow extensions
|
9
9
|
KIND_WRITERS = {
|
10
|
-
union:
|
11
|
-
interface:
|
12
|
-
object:
|
10
|
+
union: :write_union,
|
11
|
+
interface: :write_interface,
|
12
|
+
object: :write_object,
|
13
13
|
}.freeze
|
14
14
|
|
15
15
|
# Write a value to the response
|
16
16
|
def write_value(value)
|
17
17
|
return write_leaf(value) if value.nil?
|
18
|
-
send(KIND_WRITERS[field.kind] ||
|
18
|
+
send(KIND_WRITERS[field.kind] || :write_leaf, value)
|
19
19
|
end
|
20
20
|
|
21
21
|
# Resolve a given value when it is an array
|
22
22
|
def write_array(value, idx = -1, &block)
|
23
|
+
return write_leaf(value) if value.nil?
|
24
|
+
|
23
25
|
write_array!(value) do |item|
|
24
26
|
stacked(idx += 1) do
|
25
27
|
block.call(item, idx)
|
@@ -30,24 +32,25 @@ module Rails # :nodoc:
|
|
30
32
|
block.call(nil, idx)
|
31
33
|
response.next
|
32
34
|
|
33
|
-
|
34
|
-
request.exception_to_error(error,
|
35
|
+
format_array_exception(error, idx)
|
36
|
+
request.exception_to_error(error, self)
|
35
37
|
end
|
36
38
|
rescue StandardError => error
|
37
|
-
|
39
|
+
format_array_exception(error, idx)
|
38
40
|
raise
|
39
41
|
end
|
40
42
|
end
|
41
43
|
|
42
44
|
# Helper to start writing as array
|
45
|
+
# TODO: Add the support for `iterator`
|
43
46
|
def write_array!(value, &block)
|
44
|
-
raise InvalidValueError,
|
47
|
+
raise InvalidValueError, (+<<~MSG).squish unless value.respond_to?(:each)
|
45
48
|
The #{gql_name} field is excepting an array
|
46
49
|
but got an "#{value.class.name}" instead.
|
47
50
|
MSG
|
48
51
|
|
49
52
|
@writing_array = true
|
50
|
-
response.with_stack(
|
53
|
+
response.with_stack(gql_name, array: true, plain: leaf_type?) do
|
51
54
|
value.each(&block)
|
52
55
|
end
|
53
56
|
ensure
|
@@ -55,10 +58,12 @@ module Rails # :nodoc:
|
|
55
58
|
end
|
56
59
|
|
57
60
|
# Add the item index to the exception message
|
58
|
-
def
|
59
|
-
real_error =
|
60
|
-
|
61
|
-
|
61
|
+
def format_array_exception(error, idx)
|
62
|
+
real_error = (+<<~MSG).squish
|
63
|
+
The #{ActiveSupport::Inflector.ordinalize(idx + 1)} value of the #{gql_name} field
|
64
|
+
MSG
|
65
|
+
|
66
|
+
source_error = +"The #{gql_name} field value"
|
62
67
|
|
63
68
|
message = error.message.gsub(source_error, real_error)
|
64
69
|
error.define_singleton_method(:message) { message }
|
@@ -68,13 +73,13 @@ module Rails # :nodoc:
|
|
68
73
|
|
69
74
|
# Write a value based on a Union type
|
70
75
|
def write_union(value)
|
71
|
-
object = type_klass.
|
76
|
+
object = type_klass.type_for(value, request)
|
72
77
|
object.nil? ? raise_invalid_member! : resolve_fields(object)
|
73
78
|
end
|
74
79
|
|
75
80
|
# Write a value based on a Interface type
|
76
81
|
def write_interface(value)
|
77
|
-
object = type_klass.
|
82
|
+
object = type_klass.type_for(value, request)
|
78
83
|
object.nil? ? raise_invalid_member! : resolve_fields(object)
|
79
84
|
end
|
80
85
|
|
@@ -105,7 +110,7 @@ module Rails # :nodoc:
|
|
105
110
|
# A problem when an object-based value is not a valid member of the
|
106
111
|
# +type_klass+ of this field
|
107
112
|
def raise_invalid_member!
|
108
|
-
raise
|
113
|
+
raise FieldError, (+<<~MSG).squish
|
109
114
|
The #{gql_name} field result is not a member of #{type_klass.gql_name}.
|
110
115
|
MSG
|
111
116
|
end
|
@@ -0,0 +1,100 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Request
|
6
|
+
# = GraphQL Request Bypass Data
|
7
|
+
#
|
8
|
+
# This class works in collaboration with the prepare stage of a request
|
9
|
+
# execution. In that stage, the strategy must check if the request already
|
10
|
+
# have a prepared data for the field. The field can result in a instance
|
11
|
+
# of this class, which than bypasses the prepare stage by grabbing the
|
12
|
+
# next value from here
|
13
|
+
class PreparedData
|
14
|
+
SCHEMA_BASED = Helpers::WithSchemaFields::TYPE_FIELD_CLASS.keys.freeze
|
15
|
+
NULL = Object.new.freeze
|
16
|
+
|
17
|
+
REPEAT_OPTIONS = {
|
18
|
+
true => true,
|
19
|
+
false => 1,
|
20
|
+
once: 1,
|
21
|
+
cycle: true,
|
22
|
+
always: true,
|
23
|
+
}.freeze
|
24
|
+
|
25
|
+
# Look up the given +field+ using the request as a reference. It accepts
|
26
|
+
# any +Rails::GraphQL::Field+ or a string where +"query.create_user"+
|
27
|
+
# means a query field on the request schema with +create_user+ as name,
|
28
|
+
# or +create_user+ as gql_name, and "User.devices" will use the schema
|
29
|
+
# of the request to lookup the type +"User"+ and then pick the field
|
30
|
+
# +devices+
|
31
|
+
def self.lookup(request, field)
|
32
|
+
return field if field.is_a?(GraphQL::Field)
|
33
|
+
|
34
|
+
source, name = field.to_s.split('.')
|
35
|
+
return if source.nil? || name.nil?
|
36
|
+
|
37
|
+
if SCHEMA_BASED.any? { |item| item.to_s == source }
|
38
|
+
request.schema.find_field!(source.to_sym, name)
|
39
|
+
elsif (type = request.schema.find_type!(source)).is_a?(Helpers::WithFields)
|
40
|
+
type.find_field!(name)
|
41
|
+
else
|
42
|
+
field
|
43
|
+
end
|
44
|
+
rescue NotFoundError
|
45
|
+
# Return the original value, maybe it will be resolved somewhere else
|
46
|
+
field
|
47
|
+
end
|
48
|
+
|
49
|
+
def initialize(field, value, repeat: 1)
|
50
|
+
# Check if it has a valid field
|
51
|
+
raise ::ArgumentError, (+<<~MSG).squish unless field.is_a?(GraphQL::Field)
|
52
|
+
Unable to setup a prepared data for "#{field.inspect}".
|
53
|
+
You must provide a valid field.
|
54
|
+
MSG
|
55
|
+
|
56
|
+
@field = field
|
57
|
+
@value = value
|
58
|
+
@array = value.is_a?(Array) && !field.array?
|
59
|
+
@repeat = true if !@array && !value.is_a?(Array)
|
60
|
+
@repeat ||=
|
61
|
+
case repeat
|
62
|
+
when Numeric then repeat
|
63
|
+
when Enumerator then repeat.size
|
64
|
+
else REPEAT_OPTIONS[repeat]
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
# Add one more item to the list of data
|
69
|
+
def push(*values)
|
70
|
+
return @value += values if @array
|
71
|
+
@value = [@value, *values]
|
72
|
+
end
|
73
|
+
|
74
|
+
# The the whole value, because the prepare stage always deal with all
|
75
|
+
# the information available
|
76
|
+
def all
|
77
|
+
@field.array? ? Array.wrap(@value) : @value
|
78
|
+
end
|
79
|
+
|
80
|
+
# Get the enumerable of the whole value
|
81
|
+
def enum
|
82
|
+
@enum ||= (@array ? @value.to_enum : @value.then)
|
83
|
+
end
|
84
|
+
|
85
|
+
# Get the next value, take into consideration the value on repeat
|
86
|
+
def next
|
87
|
+
value = enum.next
|
88
|
+
@field.array? ? Array.wrap(value) : value
|
89
|
+
rescue StopIteration
|
90
|
+
if @repeat == true || (@repeat != false && (@repeat -= 1) > 0)
|
91
|
+
enum.rewind
|
92
|
+
self.next
|
93
|
+
else
|
94
|
+
NULL
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|