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
data/lib/rails/graphql/schema.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
5
|
# = GraphQL Schema
|
6
6
|
#
|
7
7
|
# This is a pure representation of a GraphQL schema.
|
@@ -11,7 +11,7 @@ module Rails # :nodoc:
|
|
11
11
|
# namespaces, where each schema is associated with one and only one
|
12
12
|
# namespace, guiding requests and types searching.
|
13
13
|
#
|
14
|
-
# This class works
|
14
|
+
# This class works similarly to the {TypeMap}[rdoc-ref:Rails::base_classMap]
|
15
15
|
# class, where its purpose is to know which QueryFields, Mutations, and
|
16
16
|
# Subscriptions are available. The main difference is that it doesn't hold
|
17
17
|
# namespace-based objects, since each schema is associated to a single
|
@@ -19,17 +19,13 @@ module Rails # :nodoc:
|
|
19
19
|
class Schema
|
20
20
|
extend Helpers::WithSchemaFields
|
21
21
|
extend Helpers::WithDirectives
|
22
|
+
extend Helpers::WithGlobalID
|
22
23
|
extend Helpers::Registerable
|
23
24
|
extend GraphQL::Introspection
|
24
25
|
|
25
26
|
include ActiveSupport::Configurable
|
26
27
|
include ActiveSupport::Rescuable
|
27
|
-
|
28
|
-
# The purpose of instantiating an schema is to have access to its
|
29
|
-
# public methods. It then runs from the strategy perspective, pointing
|
30
|
-
# out any other methods to the manually set event
|
31
|
-
delegate_missing_to :event
|
32
|
-
attr_reader :event
|
28
|
+
include Helpers::Instantiable
|
33
29
|
|
34
30
|
self.abstract = true
|
35
31
|
self.spec_object = true
|
@@ -37,25 +33,31 @@ module Rails # :nodoc:
|
|
37
33
|
|
38
34
|
# Imports schema specific configurations
|
39
35
|
configure do |config|
|
40
|
-
%i[
|
41
|
-
|
36
|
+
inherited_keys = %i[
|
37
|
+
enable_introspection request_strategies
|
38
|
+
enable_string_collector default_response_format
|
39
|
+
schema_type_names cache
|
40
|
+
default_subscription_provider default_subscription_broadcastable
|
41
|
+
].to_set
|
42
|
+
|
43
|
+
config.default_proc = proc do |hash, key|
|
44
|
+
hash[key] = GraphQL.config.send(key) if inherited_keys.include?(key)
|
42
45
|
end
|
43
46
|
end
|
44
47
|
|
48
|
+
rescue_from(PersistedQueryNotFound) do |error|
|
49
|
+
response = { errors: [{ message: +'PersistedQueryNotFound' }] }
|
50
|
+
error.request.force_response(response, error)
|
51
|
+
end
|
52
|
+
|
45
53
|
class << self
|
46
54
|
delegate :type_map, :logger, to: '::Rails::GraphQL'
|
47
|
-
|
48
|
-
# Mark the given class to be pending of registration
|
49
|
-
def inherited(subclass)
|
50
|
-
subclass.spec_object = false
|
51
|
-
subclass.abstract = false
|
52
|
-
super if defined? super
|
53
|
-
end
|
55
|
+
delegate :version, to: :type_map
|
54
56
|
|
55
57
|
# :singleton-method:
|
56
58
|
# Since there are only one schema per namespace, the name is constant
|
57
59
|
def gql_name
|
58
|
-
'
|
60
|
+
'__Schema'
|
59
61
|
end
|
60
62
|
|
61
63
|
alias graphql_name gql_name
|
@@ -63,7 +65,7 @@ module Rails # :nodoc:
|
|
63
65
|
# :singleton-method:
|
64
66
|
# Since there is only one schema per namespace, then both kind and
|
65
67
|
# to_sym, which is used to register, are the same
|
66
|
-
def kind
|
68
|
+
def kind
|
67
69
|
:schema
|
68
70
|
end
|
69
71
|
|
@@ -90,9 +92,18 @@ module Rails # :nodoc:
|
|
90
92
|
end
|
91
93
|
|
92
94
|
# :singleton-method:
|
93
|
-
#
|
94
|
-
def
|
95
|
-
|
95
|
+
# The base class of all schemas is always +Schema+
|
96
|
+
def gid_base_class
|
97
|
+
Schema
|
98
|
+
end
|
99
|
+
|
100
|
+
# :singleton-method:
|
101
|
+
# Return the schema
|
102
|
+
def find_by_gid(gid)
|
103
|
+
result = find!(gid.namespace.to_sym)
|
104
|
+
return result if gid.name.nil?
|
105
|
+
|
106
|
+
result.find_field!(gid.scope, gid.name)
|
96
107
|
end
|
97
108
|
|
98
109
|
# Find all types that are available for the current schema
|
@@ -100,17 +111,51 @@ module Rails # :nodoc:
|
|
100
111
|
type_map.each_from(namespace, base_class: base_class, &block)
|
101
112
|
end
|
102
113
|
|
103
|
-
# Schemas are assigned to a single namespace
|
104
|
-
|
105
|
-
|
114
|
+
# Schemas are assigned to a single namespace. You can provide a module
|
115
|
+
# as the second argument to associate that module to the same namespace
|
116
|
+
def set_namespace(ns, mod = nil)
|
117
|
+
@namespace = normalize_namespaces([ns]).first
|
118
|
+
type_map.associate(@namespace, mod) if mod.is_a?(Module)
|
106
119
|
end
|
107
120
|
|
121
|
+
alias set_namespaces set_namespace
|
122
|
+
|
108
123
|
# Schemas are assigned to a single namespace and not inherited
|
109
|
-
def namespace(*
|
110
|
-
|
124
|
+
def namespace(*args)
|
125
|
+
if args.present?
|
126
|
+
set_namespace(*args)
|
127
|
+
elsif defined?(@namespace) && !@namespace.nil?
|
128
|
+
@namespace
|
129
|
+
else
|
130
|
+
:base
|
131
|
+
end
|
111
132
|
end
|
112
133
|
|
113
|
-
#
|
134
|
+
# Add compatibility to the list of namespaces
|
135
|
+
def namespaces
|
136
|
+
namespace
|
137
|
+
end
|
138
|
+
|
139
|
+
# Check if the schema is valid
|
140
|
+
def valid?
|
141
|
+
defined?(@validated) && @validated
|
142
|
+
end
|
143
|
+
|
144
|
+
# Only run the validated process if it has not yet been validated
|
145
|
+
def validate
|
146
|
+
validate! unless valid?
|
147
|
+
rescue StandardError
|
148
|
+
GraphQL.logger.warn(+"\e[1m\e[31mSchema #{name} is invalid!\e[0m")
|
149
|
+
raise
|
150
|
+
end
|
151
|
+
|
152
|
+
# Run validations and then mark itself as validated
|
153
|
+
def validate!(*)
|
154
|
+
super if defined? super
|
155
|
+
@validated = true
|
156
|
+
end
|
157
|
+
|
158
|
+
# Check if the class is already registered in the type map
|
114
159
|
def registered?
|
115
160
|
type_map.object_exist?(self, exclusive: true)
|
116
161
|
end
|
@@ -118,11 +163,7 @@ module Rails # :nodoc:
|
|
118
163
|
# The process to register a class and it's name on the index
|
119
164
|
def register!
|
120
165
|
return if self == GraphQL::Schema
|
121
|
-
|
122
|
-
unless registered?
|
123
|
-
super if defined? super
|
124
|
-
return type_map.register(self).method(:validate!)
|
125
|
-
end
|
166
|
+
return super unless registered?
|
126
167
|
|
127
168
|
current = type_map.fetch(:schema,
|
128
169
|
namespaces: namespace,
|
@@ -130,15 +171,16 @@ module Rails # :nodoc:
|
|
130
171
|
exclusive: true,
|
131
172
|
)
|
132
173
|
|
133
|
-
raise ArgumentError,
|
174
|
+
raise ArgumentError, (+<<~MSG).squish
|
134
175
|
The #{namespace.inspect} namespace is already assigned to "#{current.name}".
|
135
176
|
Please change the namespace for "#{klass.name}" class.
|
136
177
|
MSG
|
137
178
|
end
|
138
179
|
|
139
|
-
#
|
140
|
-
def
|
141
|
-
|
180
|
+
# Hook into the unregister process to reset the subscription provider
|
181
|
+
def unregister!
|
182
|
+
restart_subscriptions
|
183
|
+
super
|
142
184
|
end
|
143
185
|
|
144
186
|
# Find a given +type+ associated with the schema
|
@@ -164,19 +206,182 @@ module Rails # :nodoc:
|
|
164
206
|
type_map.fetch!(directive, **xargs)
|
165
207
|
end
|
166
208
|
|
209
|
+
# See {Request}[rdoc-ref:Rails::GraphQL::Request]
|
210
|
+
def request
|
211
|
+
return if self == ::Rails::GraphQL::Schema
|
212
|
+
Rails::GraphQL::Request.new(self)
|
213
|
+
end
|
214
|
+
|
215
|
+
# See {Request}[rdoc-ref:Rails::GraphQL::Request]
|
216
|
+
def execute(*args, **xargs)
|
217
|
+
return if self == ::Rails::GraphQL::Schema
|
218
|
+
Rails::GraphQL::Request.execute(*args, **xargs, schema: self)
|
219
|
+
end
|
220
|
+
|
221
|
+
alias perform execute
|
222
|
+
|
223
|
+
# Return the subscription provider for the current schema
|
224
|
+
def subscription_provider
|
225
|
+
if !defined?(@subscription_provider)
|
226
|
+
@subscription_provider = config.subscription_provider || config.default_subscription_provider
|
227
|
+
subscription_provider
|
228
|
+
elsif @subscription_provider.is_a?(String)
|
229
|
+
provider = (name = @subscription_provider).safe_constantize
|
230
|
+
return @subscription_provider = provider.new(logger: logger) unless provider.nil?
|
231
|
+
|
232
|
+
raise ::NameError, +"uninitialized constant #{name}"
|
233
|
+
else
|
234
|
+
@subscription_provider
|
235
|
+
end
|
236
|
+
end
|
237
|
+
|
238
|
+
# Remove subscriptions by their provided +sids+
|
239
|
+
def remove_subscriptions(*sids)
|
240
|
+
subscription_provider&.remove(*sids)
|
241
|
+
end
|
242
|
+
|
243
|
+
# Add a new subscription using all the provided request subscription
|
244
|
+
# objects
|
245
|
+
def add_subscriptions(*subscriptions)
|
246
|
+
subscription_provider.add(*subscriptions)
|
247
|
+
end
|
248
|
+
|
249
|
+
# The the schema is unloaded, we need to make sure that the provider
|
250
|
+
# can smoothly shutdown itself
|
251
|
+
def restart_subscriptions
|
252
|
+
return unless defined?(@subscription_provider) && !@subscription_provider.nil?
|
253
|
+
subscription_provider.shutdown
|
254
|
+
end
|
255
|
+
|
256
|
+
# Checks if the given +operation+ can be subscribed to
|
257
|
+
def accepts_subscription?(operation)
|
258
|
+
subscription_provider.accepts?(operation)
|
259
|
+
end
|
260
|
+
|
261
|
+
# This receives a request subscription object and return an id for that.
|
262
|
+
# By default, it just produces a random uuid
|
263
|
+
def subscription_id_for(*)
|
264
|
+
SecureRandom.uuid
|
265
|
+
end
|
266
|
+
|
267
|
+
# Simple delegator to the cache store set on the schema config, mapped
|
268
|
+
# to +exist?+
|
269
|
+
def cached?(name, options = nil)
|
270
|
+
config.cache.exist?(expand_cache_key(name), options)
|
271
|
+
end
|
272
|
+
|
273
|
+
# Simple delegator to the cache store set on the schema config, mapped
|
274
|
+
# to +delete+
|
275
|
+
def delete_from_cache(name, options = nil)
|
276
|
+
config.cache.delete(expand_cache_key(name), options)
|
277
|
+
end
|
278
|
+
|
279
|
+
# Simple delegator to the cache store set on the schema config, mapped
|
280
|
+
# to +read+
|
281
|
+
def read_from_cache(name, options = nil)
|
282
|
+
config.cache.read(expand_cache_key(name), options)
|
283
|
+
end
|
284
|
+
|
285
|
+
# Simple delegator to the cache store set on the schema config, mapped
|
286
|
+
# to +write+
|
287
|
+
def write_on_cache(name, value, options = nil)
|
288
|
+
config.cache.write(expand_cache_key(name), value, options)
|
289
|
+
end
|
290
|
+
|
291
|
+
# Simple delegator to the cache store set on the schema config, mapped
|
292
|
+
# to +fetch+
|
293
|
+
def fetch_from_cache(name, options = nil)
|
294
|
+
config.cache.fetch(expand_cache_key(name), options)
|
295
|
+
end
|
296
|
+
|
167
297
|
# Describe a schema as a GraphQL string
|
168
298
|
def to_gql(**xargs)
|
169
299
|
ToGQL.describe(self, **xargs)
|
170
300
|
end
|
171
301
|
|
172
302
|
protected
|
303
|
+
attr_writer :subscription_provider
|
304
|
+
|
305
|
+
# Mark the given class to be pending of registration
|
306
|
+
def inherited(subclass)
|
307
|
+
subclass.abstract = false
|
308
|
+
super if defined? super
|
309
|
+
|
310
|
+
# The only way to actually get the namespace into the cache prefix
|
311
|
+
subclass.config.define_singleton_method(:cache_prefix) do
|
312
|
+
self[:cache_prefix] ||= "#{GraphQL.config.cache_prefix}#{subclass.namespace}/"
|
313
|
+
end
|
314
|
+
end
|
315
|
+
|
316
|
+
# Syntax sugar for beginners
|
317
|
+
def field(*args, **xargs, &block)
|
318
|
+
add_field(:query, *args, **xargs, &block)
|
319
|
+
end
|
320
|
+
|
321
|
+
# Indicate to type map that the current schema depends on all the
|
322
|
+
# files in the provided +path+ directory
|
323
|
+
def load_directory(dir = '.', recursive: true)
|
324
|
+
source = caller_locations(2, 1).first.path
|
325
|
+
|
326
|
+
absolute = dir.start_with?(File::SEPARATOR)
|
327
|
+
path = recursive ? File.join('**', '*.rb') : '*.rb'
|
328
|
+
dir = File.expand_path(dir, File.dirname(source)) unless absolute
|
329
|
+
|
330
|
+
list = Dir.glob(File.join(dir, path)).select do |file_name|
|
331
|
+
file_name != source
|
332
|
+
end
|
333
|
+
|
334
|
+
type_map.add_dependencies(list, to: namespace)
|
335
|
+
end
|
336
|
+
|
337
|
+
alias load_current_directory load_directory
|
338
|
+
|
339
|
+
# Load a list of known dependencies based on the given +type+
|
340
|
+
def load_dependencies(type, *list)
|
341
|
+
GraphQL.add_dependencies(type, *list, to: namespace)
|
342
|
+
end
|
173
343
|
|
174
|
-
#
|
344
|
+
# A syntax sugar for +load_dependencies(:directive, *list)+
|
345
|
+
def load_directives(*list)
|
346
|
+
load_dependencies(:directive, *list)
|
347
|
+
end
|
348
|
+
|
349
|
+
# A syntax sugar for +load_dependencies(:source, *list)+
|
350
|
+
def load_sources(*list, build: false)
|
351
|
+
load_dependencies(:source, *list)
|
352
|
+
build_all_sources if build
|
353
|
+
end
|
354
|
+
|
355
|
+
# Build all sources that has the belongs to the current namespace
|
356
|
+
def build_all_sources
|
357
|
+
GraphQL::Source.descendants.each do |klass|
|
358
|
+
next if klass.abstract?
|
359
|
+
|
360
|
+
ns = klass.namespaces
|
361
|
+
klass.build_all if (ns.blank? && namespace == :base) ||
|
362
|
+
ns == namespace || ns.try(:include?, namespace)
|
363
|
+
end
|
364
|
+
end
|
365
|
+
|
366
|
+
# Make sure to prefix the cache key
|
367
|
+
def expand_cache_key(name)
|
368
|
+
if name.is_a?(String)
|
369
|
+
name = +"#{config.cache_prefix}#{name}"
|
370
|
+
elsif name.respond_to?(:cache_key=)
|
371
|
+
name.cache_key = +"#{config.cache_prefix}#{name.cache_key}"
|
372
|
+
end
|
373
|
+
|
374
|
+
name
|
375
|
+
end
|
175
376
|
|
176
377
|
# Generate the helper methods to easily create types within the
|
177
378
|
# definition of the schema
|
178
379
|
GraphQL::Type::KINDS.each do |kind|
|
179
380
|
class_eval <<-RUBY, __FILE__, __LINE__ + 1
|
381
|
+
def load_#{kind.underscore.pluralize}(*list)
|
382
|
+
load_dependencies(:#{kind.underscore}, *list)
|
383
|
+
end
|
384
|
+
|
180
385
|
def #{kind.underscore}(name, **xargs, &block)
|
181
386
|
create_type(name, :#{kind}, **xargs, &block)
|
182
387
|
end
|
@@ -184,89 +389,29 @@ module Rails # :nodoc:
|
|
184
389
|
end
|
185
390
|
|
186
391
|
# Helper method to create a single source
|
187
|
-
def source(object, superclass = nil, **xargs, &block)
|
392
|
+
def source(object, superclass = nil, build: true, **xargs, &block)
|
188
393
|
superclass ||= GraphQL::Source.find_for!(object)
|
189
394
|
|
190
395
|
xargs[:suffix] = 'Source'
|
191
|
-
|
192
|
-
create_klass(object, superclass, GraphQL::Source, **xargs) do
|
193
|
-
set_namespace schema_namespace
|
194
|
-
|
195
|
-
xargs.each do |key, value|
|
196
|
-
_, segment = key.to_s.split('skip_on_')
|
197
|
-
skip_on segment, value if segment.present?
|
198
|
-
end
|
396
|
+
xargs[:build] = build
|
199
397
|
|
200
|
-
|
201
|
-
build!
|
202
|
-
end
|
398
|
+
create_type(object, superclass, **xargs, &block)
|
203
399
|
end
|
204
400
|
|
205
401
|
# Helper method to create multiple sources with the same type
|
206
|
-
def sources(*list, of_type: nil, &block)
|
402
|
+
def sources(*list, of_type: nil, build: true, &block)
|
207
403
|
list = list.flatten
|
208
404
|
|
209
405
|
of_type ||= GraphQL::Source.find_for!(list.first)
|
210
|
-
list.each { |object| source(object, of_type, &block) }
|
406
|
+
list.each { |object| source(object, of_type, build: build, &block) }
|
211
407
|
end
|
212
408
|
|
213
409
|
# A simpler way to create a new type object without having to create
|
214
410
|
# a class in a different file
|
215
|
-
def create_type(
|
216
|
-
|
217
|
-
xargs[:suffix] ||= superclass.base_type.name.demodulize
|
218
|
-
|
219
|
-
create_klass(name, superclass, GraphQL::Type, **xargs, &block)
|
220
|
-
end
|
221
|
-
|
222
|
-
private
|
223
|
-
|
224
|
-
# Helper to create objects that are actually classes of a given
|
225
|
-
# +superclass+ ensuring that it inherits from +base_class+.
|
226
|
-
#
|
227
|
-
# The +suffix+ option can ensures that the name of the created
|
228
|
-
# class ends with a specific suffix.
|
229
|
-
def create_klass(name_or_object, superclass, base_class = nil, **xargs, &block)
|
230
|
-
name = name_or_object.is_a?(Module) ? name_or_object.name : name_or_object.to_s
|
231
|
-
|
232
|
-
base_module = name.classify.deconstantize
|
233
|
-
base_module.prepend('GraphQL::') unless base_module =~ /^GraphQL(::|$)/
|
234
|
-
base_module = base_module.delete_suffix('::').constantize
|
235
|
-
|
236
|
-
klass_name = name.classify.demodulize
|
237
|
-
klass_name += xargs[:suffix] if xargs.key?(:suffix) &&
|
238
|
-
!klass_name.ends_with?(xargs[:suffix])
|
239
|
-
|
240
|
-
if base_module.const_defined?(klass_name)
|
241
|
-
klass = base_module.const_get(klass_name)
|
242
|
-
|
243
|
-
raise DuplicatedError, <<~MSG.squish unless !xargs[:once] && klass < superclass
|
244
|
-
A constant named "#{klass_name}" already exists for the
|
245
|
-
"#{base_module.name}" module.
|
246
|
-
MSG
|
247
|
-
else
|
248
|
-
base_class ||= superclass.ancestors.find { |k| k.superclass === Class }
|
249
|
-
|
250
|
-
valid = superclass.is_a?(Module) && superclass < base_class
|
251
|
-
raise DefinitionError, <<~MSG.squish unless valid
|
252
|
-
The given "#{superclass}" superclass does not inherites from
|
253
|
-
#{base_class.name} class.
|
254
|
-
MSG
|
255
|
-
|
256
|
-
klass = base_module.const_set(klass_name, Class.new(superclass))
|
257
|
-
end
|
258
|
-
|
259
|
-
klass.abstract = xargs[:abstract] if xargs.key?(:abstract)
|
260
|
-
klass.assigned_to = name_or_object if name_or_object.is_a?(Module) &&
|
261
|
-
klass.is_a?(Helpers::WithAssignment)
|
262
|
-
|
263
|
-
klass.set_namespace(namespace)
|
264
|
-
klass.instance_exec(&block) if block.present?
|
265
|
-
klass
|
411
|
+
def create_type(*args, **xargs, &block)
|
412
|
+
GraphQL::Type.create!(self, *args, **xargs, &block)
|
266
413
|
end
|
267
414
|
end
|
268
415
|
end
|
269
|
-
|
270
|
-
ActiveSupport.run_load_hooks(:graphql, Schema)
|
271
416
|
end
|
272
417
|
end
|
@@ -2,15 +2,30 @@
|
|
2
2
|
|
3
3
|
# This exposed module allows some shortcuts while working outside of the gem
|
4
4
|
module GraphQL
|
5
|
+
autoload :BaseController, "#{__dir__}/railties/app/base_controller.rb"
|
6
|
+
autoload :BaseChannel, "#{__dir__}/railties/app/base_channel.rb"
|
7
|
+
|
5
8
|
# List of constant shortcuts, as string to not trigger autoload
|
6
9
|
CONST_SHORTCUTS = {
|
10
|
+
CacheKey: '::Rails::GraphQL::CacheKey',
|
11
|
+
Channel: '::Rails::GraphQL::Channel',
|
7
12
|
Controller: '::Rails::GraphQL::Controller',
|
8
13
|
Directive: '::Rails::GraphQL::Directive',
|
9
|
-
|
10
|
-
Mutation: '::Rails::GraphQL::Mutation',
|
14
|
+
GlobalID: '::Rails::GraphQL::GlobalID',
|
11
15
|
Request: '::Rails::GraphQL::Request',
|
12
16
|
Schema: '::Rails::GraphQL::Schema',
|
13
17
|
Source: '::Rails::GraphQL::Source',
|
18
|
+
Type: '::Rails::GraphQL::Type',
|
19
|
+
|
20
|
+
Field: '::Rails::GraphQL::Alternative::Field',
|
21
|
+
Query: '::Rails::GraphQL::Alternative::Query',
|
22
|
+
Mutation: '::Rails::GraphQL::Alternative::Mutation',
|
23
|
+
Subscription: '::Rails::GraphQL::Alternative::Subscription',
|
24
|
+
|
25
|
+
FieldSet: '::Rails::GraphQL::Alternative::FieldSet',
|
26
|
+
QuerySet: '::Rails::GraphQL::Alternative::QuerySet',
|
27
|
+
MutationSet: '::Rails::GraphQL::Alternative::MutationSet',
|
28
|
+
SubscriptionSet: '::Rails::GraphQL::Alternative::SubscriptionSet',
|
14
29
|
|
15
30
|
Enum: '::Rails::GraphQL::Type::Enum',
|
16
31
|
Input: '::Rails::GraphQL::Type::Input',
|
@@ -19,9 +34,7 @@ module GraphQL
|
|
19
34
|
Scalar: '::Rails::GraphQL::Type::Scalar',
|
20
35
|
Union: '::Rails::GraphQL::Type::Union',
|
21
36
|
|
22
|
-
|
23
|
-
AssociationField: '::Rails::GraphQL::Field::AssociationField',
|
24
|
-
|
37
|
+
BaseSource: '::Rails::GraphQL::Source::BaseSource',
|
25
38
|
ActiveRecordSource: '::Rails::GraphQL::Source::ActiveRecordSource',
|
26
39
|
}.freeze
|
27
40
|
|
@@ -35,11 +48,13 @@ module GraphQL
|
|
35
48
|
#
|
36
49
|
# Rails::GraphQL::Directive::DeprecatedDirective(...)
|
37
50
|
# # => Rails::GraphQL::Directive::DeprecatedDirective.new(...)
|
38
|
-
DIRECTIVE_SHORTCUTS = %i[DeprecatedDirective IncludeDirective SkipDirective
|
51
|
+
DIRECTIVE_SHORTCUTS = %i[DeprecatedDirective IncludeDirective SkipDirective
|
52
|
+
SpecifiedByDirective].freeze
|
39
53
|
|
40
54
|
class << self
|
41
|
-
delegate
|
42
|
-
delegate
|
55
|
+
delegate *DIRECTIVE_SHORTCUTS, to: 'Rails::GraphQL::Directive'
|
56
|
+
delegate :add_dependencies, :configure, :config, :to_gql, :to_graphql, :type_map,
|
57
|
+
to: 'Rails::GraphQL'
|
43
58
|
|
44
59
|
# See {Request}[rdoc-ref:Rails::GraphQL::Request]
|
45
60
|
def request(*args, **xargs)
|
@@ -53,6 +68,16 @@ module GraphQL
|
|
53
68
|
|
54
69
|
alias perform execute
|
55
70
|
|
71
|
+
# See {Request}[rdoc-ref:Rails::GraphQL::Request]
|
72
|
+
def compile(*args, **xargs)
|
73
|
+
Rails::GraphQL::Request.compile(*args, **xargs)
|
74
|
+
end
|
75
|
+
|
76
|
+
# See {Request}[rdoc-ref:Rails::GraphQL::Request]
|
77
|
+
def valid?(*args, **xargs)
|
78
|
+
Rails::GraphQL::Request.valid?(*args, **xargs)
|
79
|
+
end
|
80
|
+
|
56
81
|
# See {CONST_SHORTCUTS}[rdoc-ref:GraphQL::CONST_SHORTCUTS]
|
57
82
|
def const_defined?(name, *)
|
58
83
|
name = :"ActiveRecord#{name[2..-1]}" if name[0..1] === 'AR'
|