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,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
class Type
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Type
|
6
6
|
# = GraphQL ObjectType
|
7
7
|
#
|
8
8
|
# Objects represent a list of named fields, each of which yield a value of
|
@@ -13,6 +13,8 @@ module Rails # :nodoc:
|
|
13
13
|
extend Helpers::WithAssignment
|
14
14
|
extend Helpers::WithFields
|
15
15
|
|
16
|
+
include Helpers::Instantiable
|
17
|
+
|
16
18
|
setup! output: true
|
17
19
|
|
18
20
|
self.field_type = Field::OutputField
|
@@ -24,31 +26,28 @@ module Rails # :nodoc:
|
|
24
26
|
Type::Union,
|
25
27
|
].freeze
|
26
28
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
autoload :TypeObject
|
34
|
-
end
|
29
|
+
autoload :DirectiveObject
|
30
|
+
autoload :EnumValueObject
|
31
|
+
autoload :FieldObject
|
32
|
+
autoload :InputValueObject
|
33
|
+
autoload :SchemaObject
|
34
|
+
autoload :TypeObject
|
35
35
|
|
36
36
|
# Define the methods for accessing the interfaces of the object
|
37
37
|
inherited_collection :interfaces, instance_reader: false
|
38
38
|
|
39
|
-
# The purpose of instantiating an object is to have access to its
|
40
|
-
# public methods. It then runs from the strategy perspective, pointing
|
41
|
-
# out any other methods to the manually set event
|
42
|
-
delegate_missing_to :event
|
43
|
-
attr_reader :event
|
44
|
-
|
45
39
|
class << self
|
46
40
|
# Plain objects can check if a given value is a valid member
|
47
41
|
def valid_member?(value)
|
48
42
|
return true if valid_assignment?(value)
|
49
|
-
|
50
|
-
|
51
|
-
|
43
|
+
|
44
|
+
check_hash = value.is_a?(::Hash)
|
45
|
+
checker = check_hash ? :key? : :respond_to?
|
46
|
+
|
47
|
+
fields.values.all? do |field|
|
48
|
+
value.public_send(checker, field.method_name) ||
|
49
|
+
(check_hash && (field.null? || value.key?(field.gql_name)))
|
50
|
+
end
|
52
51
|
end
|
53
52
|
|
54
53
|
# Check if the other type is equivalent, by checking if the other is
|
@@ -58,17 +57,16 @@ module Rails # :nodoc:
|
|
58
57
|
end
|
59
58
|
|
60
59
|
# Use this method to assign interfaces to the object
|
61
|
-
def implements(*others)
|
60
|
+
def implements(*others, import_fields: true)
|
62
61
|
return if others.blank?
|
63
62
|
|
64
|
-
|
63
|
+
current = all_interfaces&.dup
|
65
64
|
others.flat_map do |item|
|
66
65
|
item = find_interface!(item)
|
67
|
-
next if
|
66
|
+
next if current&.include?(item) || interfaces.include?(item)
|
68
67
|
|
69
|
-
item.implemented(self)
|
68
|
+
item.implemented(self, import_fields: import_fields)
|
70
69
|
interfaces << item
|
71
|
-
cache << item
|
72
70
|
end
|
73
71
|
end
|
74
72
|
|
@@ -77,6 +75,16 @@ module Rails # :nodoc:
|
|
77
75
|
(object = find_interface(interface)).present? && all_interfaces.include?(object)
|
78
76
|
end
|
79
77
|
|
78
|
+
def inspect
|
79
|
+
return super if self.eql?(Type::Object)
|
80
|
+
fields = @fields.values.map(&:inspect)
|
81
|
+
fields = fields.presence && +" {#{fields.join(', ')}}"
|
82
|
+
|
83
|
+
directives = inspect_directives
|
84
|
+
directives.prepend(' ') if directives.present?
|
85
|
+
+"#<GraphQL::Object #{gql_name}#{fields}#{directives}>"
|
86
|
+
end
|
87
|
+
|
80
88
|
private
|
81
89
|
|
82
90
|
# Soft find an object as an +interface+
|
@@ -94,7 +102,7 @@ module Rails # :nodoc:
|
|
94
102
|
) unless object.is_a?(Module) && object < Type::Interface
|
95
103
|
|
96
104
|
return object if object.try(:interface?)
|
97
|
-
raise ArgumentError,
|
105
|
+
raise ArgumentError, (+<<~MSG).squish
|
98
106
|
The given "#{object}" is not a valid interface.
|
99
107
|
MSG
|
100
108
|
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Type
|
6
|
+
# Handles any type of data for both input and output
|
7
|
+
class Scalar::AnyScalar < Scalar
|
8
|
+
desc 'The Any scalar type allows anything for both input and output.'
|
9
|
+
|
10
|
+
class << self
|
11
|
+
def valid_input?(value)
|
12
|
+
true
|
13
|
+
end
|
14
|
+
|
15
|
+
def valid_output?(value)
|
16
|
+
true
|
17
|
+
end
|
18
|
+
|
19
|
+
def to_json(value)
|
20
|
+
value.to_json
|
21
|
+
end
|
22
|
+
|
23
|
+
def as_json(value)
|
24
|
+
value.as_json
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -1,14 +1,14 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
class Type
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Type
|
6
6
|
# Bigint basically removes the limit of the value, but it serializes as
|
7
7
|
# a string so it won't go against the spec
|
8
8
|
class Scalar::BigintScalar < Scalar
|
9
9
|
desc <<~DESC
|
10
|
-
The Bigint scalar type represents a signed numeric non
|
11
|
-
It can go beyond the Int 32
|
10
|
+
The Bigint scalar type represents a signed numeric non-fractional value.
|
11
|
+
It can go beyond the Int 32-bit limit, but it's exchanged as a string.
|
12
12
|
DESC
|
13
13
|
|
14
14
|
class << self
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
class Type
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Type
|
6
6
|
# Binary basically allows binary data to be shared using Base64 strings,
|
7
7
|
# ensuring the UTF-8 encoding and performing the necessary conversion.
|
8
8
|
#
|
@@ -15,6 +15,8 @@ module Rails # :nodoc:
|
|
15
15
|
Normally used to share files and uploads.
|
16
16
|
DESC
|
17
17
|
|
18
|
+
use :specified_by, url: 'https://www.rfc-editor.org/rfc/rfc3548'
|
19
|
+
|
18
20
|
class << self
|
19
21
|
def as_json(value)
|
20
22
|
Base64.encode64(value.to_s).chomp
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
class Type
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Type
|
6
6
|
# The Boolean scalar type represents +true+ or +false+.
|
7
7
|
#
|
8
8
|
# See http://spec.graphql.org/June2018/#sec-Boolean
|
@@ -16,19 +16,19 @@ module Rails # :nodoc:
|
|
16
16
|
|
17
17
|
class << self
|
18
18
|
def valid_input?(value)
|
19
|
-
value === true || value === false
|
19
|
+
valid_token?(value) || value === true || value === false
|
20
20
|
end
|
21
21
|
|
22
|
-
def valid_output?(
|
23
|
-
|
22
|
+
def valid_output?(*)
|
23
|
+
true # Pretty much anything can be turned into a boolean
|
24
24
|
end
|
25
25
|
|
26
26
|
def as_json(value)
|
27
|
-
value.
|
27
|
+
!(value.nil? || FALSE_VALUES.include?(value))
|
28
28
|
end
|
29
29
|
|
30
30
|
def deserialize(value)
|
31
|
-
|
31
|
+
as_json(value)
|
32
32
|
end
|
33
33
|
end
|
34
34
|
end
|
@@ -1,12 +1,14 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
class Type
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Type
|
6
6
|
# Date uses a ISO 8601 string to exchange the value.
|
7
7
|
class Scalar::DateScalar < Scalar
|
8
8
|
desc 'The Date scalar type represents a ISO 8601 string value.'
|
9
9
|
|
10
|
+
use :specified_by, url: 'https://www.rfc-editor.org/rfc/rfc3339'
|
11
|
+
|
10
12
|
class << self
|
11
13
|
def valid_input?(value)
|
12
14
|
super && !!Date.iso8601(value)
|
@@ -1,14 +1,16 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
class Type
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Type
|
6
6
|
# DateTime uses a ISO 8601 string to exchange the value.
|
7
7
|
class Scalar::DateTimeScalar < Scalar
|
8
8
|
aliases :datetime
|
9
9
|
|
10
10
|
desc 'The DateTime scalar type represents a ISO 8601 string value.'
|
11
11
|
|
12
|
+
use :specified_by, url: 'https://www.rfc-editor.org/rfc/rfc3339'
|
13
|
+
|
12
14
|
class << self
|
13
15
|
def valid_input?(value)
|
14
16
|
super && !!(Time.iso8601(value) rescue false)
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
class Type
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Type
|
6
6
|
# Similar to float, but implies extra precision, making sure that all the
|
7
7
|
# decimal-point numbers are kept. As Bigint, it uses a string so it won't
|
8
8
|
# go against the spec.
|
@@ -12,6 +12,8 @@ module Rails # :nodoc:
|
|
12
12
|
The values are exchange as string.
|
13
13
|
DESC
|
14
14
|
|
15
|
+
use :specified_by, url: 'https://en.wikipedia.org/wiki/IEEE_754-2008_revision'
|
16
|
+
|
15
17
|
class << self
|
16
18
|
def valid_input?(value)
|
17
19
|
super && value.match?(/\A[+-]?\d+\.\d+\z/)
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
class Type
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Type
|
6
6
|
# The Float scalar type represents signed double-precision fractional
|
7
7
|
# values as specified by
|
8
8
|
# {IEEE 754}[http://en.wikipedia.org/wiki/IEEE_floating_point].
|
@@ -11,11 +11,11 @@ module Rails # :nodoc:
|
|
11
11
|
class Scalar::FloatScalar < Scalar
|
12
12
|
self.spec_object = true
|
13
13
|
|
14
|
-
desc 'The Float scalar type represents signed double
|
14
|
+
desc 'The Float scalar type represents signed double-precision fractional values.'
|
15
15
|
|
16
16
|
class << self
|
17
17
|
def valid_input?(value)
|
18
|
-
value.is_a?(Float)
|
18
|
+
valid_token?(value) || value.is_a?(Float)
|
19
19
|
end
|
20
20
|
|
21
21
|
def valid_output?(value)
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
class Type
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Type
|
6
6
|
# The ID scalar type represents a unique identifier, often used to
|
7
7
|
# refetch an object or as the key for a cache. The ID type is serialized
|
8
8
|
# in the same way as a +StringScalar+.
|
@@ -20,7 +20,8 @@ module Rails # :nodoc:
|
|
20
20
|
|
21
21
|
class << self
|
22
22
|
def valid_input?(value)
|
23
|
-
|
23
|
+
valid_token?(value, :string) || valid_token?(value, :int) ||
|
24
|
+
value.is_a?(String) || value.is_a?(Integer)
|
24
25
|
end
|
25
26
|
|
26
27
|
def as_json(value)
|
@@ -30,7 +31,7 @@ module Rails # :nodoc:
|
|
30
31
|
end
|
31
32
|
|
32
33
|
def deserialize(value)
|
33
|
-
value
|
34
|
+
valid_token?(value, :string) ? value[1..-2] : value
|
34
35
|
end
|
35
36
|
end
|
36
37
|
end
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
class Type
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Type
|
6
6
|
# The Int scalar type represents a signed 32-bit numeric
|
7
7
|
# non-fractional value.
|
8
8
|
#
|
@@ -11,14 +11,15 @@ module Rails # :nodoc:
|
|
11
11
|
self.spec_object = true
|
12
12
|
aliases :integer
|
13
13
|
|
14
|
-
desc 'The Int scalar type represents a signed 32
|
14
|
+
desc 'The Int scalar type represents a signed 32-bit numeric non-fractional value.'
|
15
15
|
|
16
16
|
max_value = (1 << 31)
|
17
17
|
RANGE = (-max_value...max_value).freeze
|
18
18
|
|
19
19
|
class << self
|
20
20
|
def valid_input?(value)
|
21
|
-
|
21
|
+
(valid_token?(value) && RANGE.cover?(value.to_i)) ||
|
22
|
+
(value.is_a?(Integer) && RANGE.cover?(value))
|
22
23
|
end
|
23
24
|
|
24
25
|
def valid_output?(value)
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Type
|
6
|
+
# Handles an unstructured JSON data
|
7
|
+
class Scalar::JsonScalar < Scalar
|
8
|
+
rename! 'JSON'
|
9
|
+
|
10
|
+
desc <<~DESC
|
11
|
+
The JSON scalar type represents an unstructured JSON data
|
12
|
+
with all its available keys and values.
|
13
|
+
DESC
|
14
|
+
|
15
|
+
use :specified_by, url: 'https://www.rfc-editor.org/rfc/rfc8259'
|
16
|
+
|
17
|
+
class << self
|
18
|
+
def valid_input?(value)
|
19
|
+
valid_token?(value, :hash) || value.is_a?(::Hash)
|
20
|
+
end
|
21
|
+
|
22
|
+
def valid_output?(value)
|
23
|
+
value.is_a?(::Hash)
|
24
|
+
end
|
25
|
+
|
26
|
+
def to_json(value)
|
27
|
+
value.to_json
|
28
|
+
end
|
29
|
+
|
30
|
+
def as_json(value)
|
31
|
+
value.as_json
|
32
|
+
end
|
33
|
+
|
34
|
+
def deserialize(value)
|
35
|
+
value.is_a?(::GQLParser::Token) ? JSON.parse(value) : value
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
class Type
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Type
|
6
6
|
# The String scalar type represents textual data, represented as UTF-8
|
7
7
|
# character sequences.
|
8
8
|
#
|
@@ -11,16 +11,30 @@ module Rails # :nodoc:
|
|
11
11
|
self.spec_object = true
|
12
12
|
|
13
13
|
desc <<~DESC
|
14
|
-
The String scalar type represents textual data, represented as UTF
|
14
|
+
The String scalar type represents textual data, represented as UTF-8 character
|
15
15
|
sequences.
|
16
16
|
DESC
|
17
17
|
|
18
18
|
class << self
|
19
|
+
def valid_input?(value)
|
20
|
+
super || valid_token?(value, :heredoc)
|
21
|
+
end
|
22
|
+
|
19
23
|
def as_json(value)
|
20
24
|
value = value.to_s unless value.is_a?(String)
|
21
25
|
value = value.encode(Encoding::UTF_8) unless value.encoding.eql?(Encoding::UTF_8)
|
22
26
|
value
|
23
27
|
end
|
28
|
+
|
29
|
+
def deserialize(value)
|
30
|
+
if valid_token?(value, :string)
|
31
|
+
value[1..-2] # Remove the quotes
|
32
|
+
elsif valid_token?(value, :heredoc)
|
33
|
+
value[3..-4].strip_heredoc # Remove the quotes and fix indentation
|
34
|
+
else
|
35
|
+
value
|
36
|
+
end
|
37
|
+
end
|
24
38
|
end
|
25
39
|
end
|
26
40
|
end
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
class Type
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Type
|
6
6
|
# Uses as a float extension in order to transmit times (hours, minutes,
|
7
7
|
# and seconds) as a numeric representation of seconds and milliseconds.
|
8
8
|
class Scalar::TimeScalar < Scalar::FloatScalar
|
@@ -10,12 +10,14 @@ module Rails # :nodoc:
|
|
10
10
|
|
11
11
|
desc <<~MSG
|
12
12
|
The Time scalar type that represents a distance in time using hours,
|
13
|
-
minutes, seconds, and
|
13
|
+
minutes, seconds, and milliseconds.
|
14
14
|
MSG
|
15
15
|
|
16
|
+
use :specified_by, url: 'https://www.rfc-editor.org/rfc/rfc3339'
|
17
|
+
|
16
18
|
# A +base_object+ helps to identify what methods are actually available
|
17
19
|
# to work as resolvers
|
18
|
-
class_attribute :precision,
|
20
|
+
class_attribute :precision, instance_accessor: false, default: 6
|
19
21
|
|
20
22
|
class << self
|
21
23
|
def valid_input?(value)
|
@@ -31,7 +33,7 @@ module Rails # :nodoc:
|
|
31
33
|
end
|
32
34
|
|
33
35
|
def deserialize(value)
|
34
|
-
"#{EPOCH.to_date.iso8601} #{value} UTC".to_time
|
36
|
+
(+"#{EPOCH.to_date.iso8601} #{value} UTC").to_time
|
35
37
|
end
|
36
38
|
end
|
37
39
|
end
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
class Type
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Type
|
6
6
|
# = GraphQL ScalarType
|
7
7
|
#
|
8
8
|
# Scalar types represent primitive leaf values in a GraphQL type system.
|
@@ -18,27 +18,27 @@ module Rails # :nodoc:
|
|
18
18
|
|
19
19
|
setup! leaf: true, input: true, output: true
|
20
20
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
autoload :IdScalar
|
21
|
+
# Load all the default scalar types
|
22
|
+
autoload :IntScalar
|
23
|
+
autoload :FloatScalar
|
24
|
+
autoload :StringScalar
|
25
|
+
autoload :BooleanScalar
|
26
|
+
autoload :IdScalar
|
28
27
|
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
28
|
+
# Load all additional scalar types
|
29
|
+
autoload :AnyScalar
|
30
|
+
autoload :BigintScalar
|
31
|
+
autoload :BinaryScalar
|
32
|
+
autoload :DateScalar
|
33
|
+
autoload :DateTimeScalar
|
34
|
+
autoload :DecimalScalar
|
35
|
+
autoload :JsonScalar
|
36
|
+
autoload :TimeScalar
|
37
37
|
|
38
38
|
class << self
|
39
39
|
# Check if a given value is a valid non-deserialized input
|
40
40
|
def valid_input?(value)
|
41
|
-
value.is_a?(String)
|
41
|
+
valid_token?(value) || value.is_a?(String)
|
42
42
|
end
|
43
43
|
|
44
44
|
# Check if a given value is a valid non-serialized output
|
@@ -56,13 +56,16 @@ module Rails # :nodoc:
|
|
56
56
|
value.to_s
|
57
57
|
end
|
58
58
|
|
59
|
-
# Turn a user input of this given type into
|
59
|
+
# Turn a user input of this given type into a Ruby object
|
60
60
|
def deserialize(value)
|
61
|
-
value
|
61
|
+
value.is_a?(::GQLParser::Token) ? as_json(value) : value
|
62
62
|
end
|
63
63
|
|
64
|
-
def inspect
|
65
|
-
|
64
|
+
def inspect
|
65
|
+
return super if self.eql?(Type::Scalar)
|
66
|
+
directives = inspect_directives
|
67
|
+
directives.prepend(' ') if directives.present?
|
68
|
+
+"#<GraphQL::Scalar #{gql_name}#{directives}>"
|
66
69
|
end
|
67
70
|
end
|
68
71
|
end
|
@@ -1,29 +1,30 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
module Rails
|
4
|
-
module GraphQL
|
5
|
-
class Type
|
3
|
+
module Rails
|
4
|
+
module GraphQL
|
5
|
+
class Type
|
6
6
|
# = GraphQL UnionType
|
7
7
|
#
|
8
8
|
# Unions represent an object that could be one of a list of GraphQL
|
9
9
|
# Object types.
|
10
10
|
# See http://spec.graphql.org/June2018/#UnionTypeDefinition
|
11
11
|
class Union < Type
|
12
|
+
include Helpers::Instantiable
|
13
|
+
|
12
14
|
setup! output: true
|
13
15
|
|
14
16
|
# The list of accepted classes for members
|
15
17
|
VALID_MEMBER_TYPES = [Type::Object].freeze
|
16
18
|
|
17
19
|
# Define the methods for accessing the members attribute
|
18
|
-
inherited_collection :members
|
19
|
-
|
20
|
-
# The purpose of instantiating an interface is to have access to its
|
21
|
-
# public methods. It then runs from the strategy perspective, pointing
|
22
|
-
# out any other methods to the manually set event
|
23
|
-
delegate_missing_to :event
|
24
|
-
attr_reader :event
|
20
|
+
inherited_collection :members, instance_reader: false
|
25
21
|
|
26
22
|
class << self
|
23
|
+
# Figure out which one of the members is compatible with the provided +value+
|
24
|
+
def type_for(value, *)
|
25
|
+
all_members&.reverse_each&.find { |t| t.valid_member?(value) }
|
26
|
+
end
|
27
|
+
|
27
28
|
# Return the base type of the objects on this union
|
28
29
|
def of_kind
|
29
30
|
members.first.base_type
|
@@ -45,13 +46,13 @@ module Rails # :nodoc:
|
|
45
46
|
GraphQL.type_map.fetch(item, namespaces: namespaces)
|
46
47
|
end
|
47
48
|
|
48
|
-
checker = others.
|
49
|
-
raise ArgumentError,
|
49
|
+
checker = others.map { |item| item.try(:base_type) }.uniq
|
50
|
+
raise ArgumentError, (+<<~MSG).squish unless checker.size === 1
|
50
51
|
All the union members must be of the same base class.
|
51
52
|
MSG
|
52
53
|
|
53
|
-
check_types = members? ? [
|
54
|
-
raise ArgumentError,
|
54
|
+
check_types = members? ? [of_kind] : VALID_MEMBER_TYPES
|
55
|
+
raise ArgumentError, (+<<~MSG).squish unless (check_types & checker).size === 1
|
55
56
|
A union cannot contain members of different base classes.
|
56
57
|
MSG
|
57
58
|
|
@@ -63,21 +64,23 @@ module Rails # :nodoc:
|
|
63
64
|
super if defined? super
|
64
65
|
|
65
66
|
members = all_members
|
66
|
-
raise ArgumentError,
|
67
|
+
raise ArgumentError, (+<<~MSG).squish unless members.size >= 1
|
67
68
|
A union must contain at least one member.
|
68
69
|
MSG
|
69
70
|
|
70
71
|
size = members.lazy.map(&:base_type).uniq.force.size
|
71
|
-
raise ArgumentError,
|
72
|
+
raise ArgumentError, (+<<~MSG).squish unless size.eql?(1)
|
72
73
|
All the members of the union must contain the same base class.
|
73
74
|
MSG
|
74
75
|
end
|
75
76
|
|
76
|
-
def inspect
|
77
|
-
|
77
|
+
def inspect
|
78
|
+
return super if self.eql?(Type::Union)
|
79
|
+
(+<<~INFO).squish << '>'
|
78
80
|
#<GraphQL::Union #{gql_name}
|
79
81
|
(#{all_members.size})
|
80
82
|
{#{all_members.map(&:gql_name).join(' | ')}}
|
83
|
+
#{inspect_directives}
|
81
84
|
INFO
|
82
85
|
end
|
83
86
|
end
|