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/config.rb
CHANGED
@@ -1,61 +1,192 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
5
|
configure do |config|
|
6
|
-
# This
|
6
|
+
# This helps to keep track of when things were cached and registered. Cached
|
7
|
+
# objects with mismatching versions need to be upgraded or simply reloaded.
|
8
|
+
# An excellent way to use this is to set it to the commit hash. TypePap will
|
9
|
+
# always use only the first 8 characters for simplicity.
|
10
|
+
config.version = nil
|
11
|
+
|
12
|
+
# The instance responsible for caching all the information generated by
|
13
|
+
# requests and all the other components. Manually setting this property
|
14
|
+
# means that the object in it complies with `ActiveSupport::Cache::Store`.
|
15
|
+
# This will map automatically to `Rails.cache` if kept as `nil`. This can
|
16
|
+
# also be set per Schema.
|
17
|
+
config.cache = nil
|
18
|
+
|
19
|
+
# If Rails cache is not properly defined or just set to use a NullStore,
|
20
|
+
# this fallback will set itself up with a memory store because cache is
|
21
|
+
# crucial, especially for subscriptions.
|
22
|
+
config.cache_fallback = -> do
|
23
|
+
::ActiveSupport::Cache::MemoryStore.new(max_prune_time: nil)
|
24
|
+
end
|
25
|
+
|
26
|
+
# This is the prefix key of all the cache entries for the GraphQL cached
|
27
|
+
# things.
|
28
|
+
config.cache_prefix = 'graphql/'
|
29
|
+
|
30
|
+
# The list of nested paths inside of the graphql folder that does not
|
31
|
+
# require to be in their own namespace.
|
32
|
+
config.paths = %w[directives fields sources enums inputs interfaces object
|
33
|
+
scalars unions].to_set
|
34
|
+
|
35
|
+
# This is very similar to `ActiveRecord` verbose logs, which simply show the
|
36
|
+
# path of the file that started a GraphQL request.
|
7
37
|
config.verbose_logs = true
|
8
38
|
|
9
|
-
#
|
10
|
-
#
|
39
|
+
# The list of parameters to omit from the logger when running a GraphQL
|
40
|
+
# request. Those values are displayed better in the internal runtime logger
|
41
|
+
# controller.
|
42
|
+
config.omit_parameters = %w[query operationName operation_name variables graphql]
|
43
|
+
|
44
|
+
# Identical to the one available on a Rails application, but exclusive for
|
45
|
+
# GraphQL operations. The list of parameters to display as filtered in the
|
46
|
+
# logs. When it is nil, it will use the same as the Rails application.
|
47
|
+
config.filter_parameters = nil
|
48
|
+
|
49
|
+
# A list of all `ActiveRecord` adapters supported. When an adapter is
|
50
|
+
# supported, it will map the database types into GraphQL types using proper
|
51
|
+
# aliases. Plus, it will have the method to map models attributes to their
|
52
|
+
# equivalent fields.
|
11
53
|
config.ar_adapters = {
|
12
|
-
'Mysql2' => :mysql,
|
13
|
-
'PostgreSQL' => :pg,
|
14
|
-
'SQLite' => :sqlite,
|
54
|
+
'Mysql2' => { key: :mysql, path: "#{__dir__}/adapters/mysql_adapter" },
|
55
|
+
'PostgreSQL' => { key: :pg, path: "#{__dir__}/adapters/pg_adapter" },
|
56
|
+
'SQLite' => { key: :sqlite, path: "#{__dir__}/adapters/sqlite_adapter" },
|
15
57
|
}
|
16
58
|
|
17
|
-
#
|
18
|
-
#
|
59
|
+
# The suffix that is added automatically to all the Input type objects. This
|
60
|
+
# prevents situations like `PointInputInput`. If your inputs have a
|
61
|
+
# different suffix, change this value to it.
|
19
62
|
config.auto_suffix_input_objects = 'Input'
|
20
63
|
|
64
|
+
# Introspection is enabled by default. It is recommended to only use
|
65
|
+
# introspection during development and tests, never in production.
|
66
|
+
# This can also be set per schema level.
|
67
|
+
config.enable_introspection = false
|
68
|
+
|
69
|
+
# Define the names of the schema/operations types. The single "_" is a
|
70
|
+
# suggestion. In an application that has a Subscription object, it will
|
71
|
+
# prevent the conflict. Plus, it is easy to spot that it is something
|
72
|
+
# internal. This can also be set per Schema.
|
73
|
+
config.schema_type_names = {
|
74
|
+
query: '_Query',
|
75
|
+
mutation: '_Mutation',
|
76
|
+
subscription: '_Subscription',
|
77
|
+
}
|
78
|
+
|
21
79
|
# For performance purposes, this gem implements a
|
22
80
|
# {JsonCollector}[rdoc-ref:Rails::GraphQL::Collectors::JsonCollector].
|
23
|
-
#
|
24
|
-
#
|
81
|
+
# You can disable this option if you prefer to use the standard
|
82
|
+
# hash-to-string serialization provided by `ActiveSupport`.
|
83
|
+
# This can also be set per Schema.
|
25
84
|
config.enable_string_collector = true
|
26
85
|
|
86
|
+
# Set what is de default expected output type of GraphQL requests. String
|
87
|
+
# combined with the previous setting has the best performance. On the
|
88
|
+
# console, it will automatically shift to Hash. This can also be set per
|
89
|
+
# Schema.
|
90
|
+
config.default_response_format = :string
|
91
|
+
|
27
92
|
# Specifies if the results of operations should be encoded with
|
28
93
|
# +ActiveSupport::JSON#encode+ instead of the default +JSON#generate+.
|
29
94
|
# See also https://github.com/rails/rails/blob/master/activesupport/lib/active_support/json/encoding.rb
|
30
95
|
config.encode_with_active_support = false
|
31
96
|
|
32
|
-
# Enable the ability of a callback to
|
97
|
+
# Enable the ability of a callback to inject arguments dynamically into the
|
33
98
|
# calling method.
|
34
99
|
config.callback_inject_arguments = true
|
35
100
|
|
36
|
-
# Enable the ability of a callback to
|
37
|
-
#
|
101
|
+
# Enable the ability of a callback to inject named arguments dynamically
|
102
|
+
# into the calling method.
|
38
103
|
config.callback_inject_named_arguments = true
|
39
104
|
|
40
|
-
#
|
41
|
-
#
|
105
|
+
# When importing fields from modules or other objects, a warning is
|
106
|
+
# displayed for any given element that was not able to be correctly
|
107
|
+
# imported. You can silence such warnings by changing this option.
|
108
|
+
config.silence_import_warnings = false
|
109
|
+
|
110
|
+
# Enable the ability to define the description of any object, field, or
|
111
|
+
# argument using I18n. It is recommended for multi-language documentation.
|
112
|
+
config.enable_i18n_descriptions = false
|
113
|
+
|
114
|
+
# The list of scopes that will be used to locate the descriptions.
|
115
|
+
config.i18n_scopes = [
|
116
|
+
'graphql.%{namespace}.%{kind}.%{parent}.%{name}',
|
117
|
+
'graphql.%{namespace}.%{kind}.%{name}',
|
118
|
+
'graphql.%{namespace}.%{name}',
|
119
|
+
'graphql.%{kind}.%{parent}.%{name}',
|
120
|
+
'graphql.%{kind}.%{name}',
|
121
|
+
'graphql.%{name}',
|
122
|
+
]
|
123
|
+
|
124
|
+
# A list of execution strategies. Each application can add its own by
|
125
|
+
# appending a class, preferably as a string, in this list. This can also be
|
126
|
+
# set per Schema.
|
42
127
|
config.request_strategies = [
|
43
128
|
'Rails::GraphQL::Request::Strategy::MultiQueryStrategy',
|
44
129
|
'Rails::GraphQL::Request::Strategy::SequencedStrategy',
|
130
|
+
# 'Rails::GraphQL::Request::Strategy::CachedStrategy',
|
131
|
+
]
|
132
|
+
|
133
|
+
# A list of all possible ruby-to-graphql compatible sources.
|
134
|
+
config.sources = [
|
135
|
+
'Rails::GraphQL::Source::ActiveRecordSource',
|
136
|
+
]
|
137
|
+
|
138
|
+
# A list of all available subscription providers.
|
139
|
+
config.subscription_providers = [
|
140
|
+
'Rails::GraphQL::Subscription::Provider::ActionCable',
|
45
141
|
]
|
46
142
|
|
143
|
+
# The default subscription provider for all schemas. This can also be set
|
144
|
+
# per Schema.
|
145
|
+
config.default_subscription_provider = config.subscription_providers.first
|
146
|
+
|
147
|
+
# The default value for fields about their ability to be broadcasted. This
|
148
|
+
# can also be set per Schema.
|
149
|
+
config.default_subscription_broadcastable = nil
|
150
|
+
|
151
|
+
# A list of known dependencies that can be requested and included in any
|
152
|
+
# Schema. This is the best place for other gems to add their own resources
|
153
|
+
# and allow users to enable them.
|
154
|
+
config.known_dependencies = {
|
155
|
+
scalar: {
|
156
|
+
any: "#{__dir__}/type/scalar/any_scalar",
|
157
|
+
bigint: "#{__dir__}/type/scalar/bigint_scalar",
|
158
|
+
binary: "#{__dir__}/type/scalar/binary_scalar",
|
159
|
+
date_time: "#{__dir__}/type/scalar/date_time_scalar",
|
160
|
+
date: "#{__dir__}/type/scalar/date_scalar",
|
161
|
+
decimal: "#{__dir__}/type/scalar/decimal_scalar",
|
162
|
+
time: "#{__dir__}/type/scalar/time_scalar",
|
163
|
+
json: "#{__dir__}/type/scalar/json_scalar",
|
164
|
+
},
|
165
|
+
enum: {},
|
166
|
+
input: {},
|
167
|
+
interface: {},
|
168
|
+
object: {},
|
169
|
+
union: {},
|
170
|
+
directive: {
|
171
|
+
# cached: "#{__dir__}/directive/cached_directive",
|
172
|
+
},
|
173
|
+
}
|
174
|
+
|
175
|
+
# The method that should be used to parse literal input values when they are
|
176
|
+
# provided as Hash. `JSON.parse` only supports keys wrapped in quotes. You
|
177
|
+
# can use `Psych.method(:safe_load)` to support keys without quotes, which
|
178
|
+
# behaves closer to YAML. The received value is ensured to be wrapped in
|
179
|
+
# "{}". If that produces unexpected results, you can assign a proc and then
|
180
|
+
# parse the value in any other way.
|
181
|
+
config.literal_input_parser = JSON.method(:parse)
|
182
|
+
|
47
183
|
# TODO: To be implemented
|
48
|
-
# enable_i18n_descriptions
|
49
|
-
# enable_auto_descriptions
|
50
184
|
# allow_query_serialization
|
51
|
-
# source_generate_dependencies
|
52
185
|
end
|
53
186
|
|
54
187
|
# This is the logger for all the operations for GraphQL
|
55
188
|
def self.logger
|
56
|
-
config.logger ||= ActiveSupport::TaggedLogging.new(
|
57
|
-
ActiveSupport::Logger.new(STDOUT),
|
58
|
-
)
|
189
|
+
config.logger ||= ActiveSupport::TaggedLogging.new(ActiveSupport::Logger.new(STDOUT))
|
59
190
|
end
|
60
191
|
end
|
61
192
|
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
# = GraphQL Cached Directive
|
6
|
+
#
|
7
|
+
# Indicates that the request has hard cached operations that need to be
|
8
|
+
# collected
|
9
|
+
class Directive::CachedDirective < Directive
|
10
|
+
placed_on :query
|
11
|
+
|
12
|
+
desc 'Indicates that there are hard cached operations.'
|
13
|
+
|
14
|
+
argument :id, :ID, null: false, desc: <<~DESC
|
15
|
+
The unique identifier of the cached operation.
|
16
|
+
DESC
|
17
|
+
|
18
|
+
on(:attach) do |source, request|
|
19
|
+
source.data.selection = nil
|
20
|
+
# TODO: Add the request name back
|
21
|
+
# source.instance_variable_set(:@name, 'here')
|
22
|
+
|
23
|
+
# TODO: Add the arguments and variables
|
24
|
+
field = request.build(Request::Component::Field, source, nil, { name: 'a', alias: 'b' })
|
25
|
+
field.assing_to(ApplicationSchema[:query][:a])
|
26
|
+
field.check_authorization!
|
27
|
+
|
28
|
+
source.instance_variable_set(:@selection, { 'b' => field })
|
29
|
+
# puts source.inspect
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -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 Spec Deprecated Directive
|
6
6
|
#
|
7
7
|
# Mark fields or enum values as deprecated which will include an error
|
@@ -12,7 +12,7 @@ module Rails # :nodoc:
|
|
12
12
|
placed_on :field_definition, :enum_value
|
13
13
|
|
14
14
|
desc <<~DESC
|
15
|
-
Indicate deprecated portions of a GraphQL service
|
15
|
+
Indicate deprecated portions of a GraphQL service's schema, such as deprecated
|
16
16
|
fields on a type or deprecated enum values.
|
17
17
|
DESC
|
18
18
|
|
@@ -22,11 +22,11 @@ module Rails # :nodoc:
|
|
22
22
|
using Markdown syntax (as specified by [CommonMark](http://commonmark.org/)).
|
23
23
|
DESC
|
24
24
|
|
25
|
-
on
|
25
|
+
on(:organized) do |event|
|
26
26
|
report_for_field(event)
|
27
27
|
end
|
28
28
|
|
29
|
-
on
|
29
|
+
on(:finalize, for: Type::Enum) do |event|
|
30
30
|
report_for_enum_value(event)
|
31
31
|
end
|
32
32
|
|
@@ -35,7 +35,7 @@ module Rails # :nodoc:
|
|
35
35
|
# Check if the requested field is marked as deprecated
|
36
36
|
def report_for_field(event)
|
37
37
|
return unless event.field.using?(self.class)
|
38
|
-
item = "#{event.source.gql_name} field"
|
38
|
+
item = +"#{event.source.gql_name} field"
|
39
39
|
event.request.report_error(build_message(item))
|
40
40
|
end
|
41
41
|
|
@@ -44,15 +44,15 @@ module Rails # :nodoc:
|
|
44
44
|
return unless event.current_value.deprecated?
|
45
45
|
|
46
46
|
value = event.current_value.to_s
|
47
|
-
item = "#{value} value for the #{event.source.gql_name} field"
|
47
|
+
item = +"#{value} value for the #{event.source.gql_name} field"
|
48
48
|
event.request.report_error(build_message(item))
|
49
49
|
end
|
50
50
|
|
51
51
|
# Build the error message to display on the result
|
52
52
|
def build_message(item)
|
53
|
-
result = "The #{item} is deprecated"
|
54
|
-
result
|
55
|
-
result
|
53
|
+
result = +"The #{item} is deprecated"
|
54
|
+
result << ", reason: #{args.reason}" if args.reason.present?
|
55
|
+
result << '.'
|
56
56
|
end
|
57
57
|
end
|
58
58
|
end
|
@@ -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 Spec Include Directive
|
6
6
|
#
|
7
7
|
# Allow including fields only +if+ condition is true
|
@@ -16,8 +16,8 @@ module Rails # :nodoc:
|
|
16
16
|
When false, the underlying element will be automatically marked as null.
|
17
17
|
DESC
|
18
18
|
|
19
|
-
on
|
20
|
-
source.
|
19
|
+
on(:attach) do |source|
|
20
|
+
source.skip! unless args[:if]
|
21
21
|
end
|
22
22
|
end
|
23
23
|
end
|
@@ -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 Spec Skip Directive
|
6
6
|
#
|
7
7
|
# Allow skipping fields given an +if+ condition
|
@@ -16,8 +16,8 @@ module Rails # :nodoc:
|
|
16
16
|
When true, the underlying element will be automatically marked as null.
|
17
17
|
DESC
|
18
18
|
|
19
|
-
on
|
20
|
-
source.
|
19
|
+
on(:attach) do |source|
|
20
|
+
source.skip! if args[:if]
|
21
21
|
end
|
22
22
|
end
|
23
23
|
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
# = GraphQL Spec Specified By Directive
|
6
|
+
#
|
7
|
+
# Provides a scalar specification URL for specifying the behavior of
|
8
|
+
# custom scalar types.
|
9
|
+
class Directive::SpecifiedByDirective < Directive
|
10
|
+
self.spec_object = true
|
11
|
+
|
12
|
+
placed_on :scalar
|
13
|
+
|
14
|
+
desc <<~DESC
|
15
|
+
A built-in directive used within the type system definition language to provide
|
16
|
+
a scalar specification URL for specifying the behavior of custom scalar types.
|
17
|
+
DESC
|
18
|
+
|
19
|
+
argument :url, :string, null: false, desc: <<~DESC
|
20
|
+
Point to a human-readable specification of the data format.
|
21
|
+
DESC
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|