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
@@ -0,0 +1,406 @@
|
|
1
|
+
schema {
|
2
|
+
query: _Query
|
3
|
+
mutation: _Mutation
|
4
|
+
}
|
5
|
+
|
6
|
+
"The Any scalar type allows anything for both input and output."
|
7
|
+
scalar Any
|
8
|
+
|
9
|
+
"""
|
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
|
+
"""
|
13
|
+
scalar Bigint
|
14
|
+
|
15
|
+
"""
|
16
|
+
The Binary scalar type represents a Base64 string.
|
17
|
+
Normally used to share files and uploads.
|
18
|
+
"""
|
19
|
+
scalar Binary @specifiedBy(url: "https://www.rfc-editor.org/rfc/rfc3548")
|
20
|
+
|
21
|
+
"The Boolean scalar type represents true or false."
|
22
|
+
scalar Boolean
|
23
|
+
|
24
|
+
"The Date scalar type represents a ISO 8601 string value."
|
25
|
+
scalar Date @specifiedBy(url: "https://www.rfc-editor.org/rfc/rfc3339")
|
26
|
+
|
27
|
+
"The DateTime scalar type represents a ISO 8601 string value."
|
28
|
+
scalar DateTime @specifiedBy(url: "https://www.rfc-editor.org/rfc/rfc3339")
|
29
|
+
|
30
|
+
"""
|
31
|
+
The Decimal scalar type represents signed fractional values with extra precision.
|
32
|
+
The values are exchange as string.
|
33
|
+
"""
|
34
|
+
scalar Decimal @specifiedBy(url: "https://en.wikipedia.org/wiki/IEEE_754-2008_revision")
|
35
|
+
|
36
|
+
"The Float scalar type represents signed double-precision fractional values."
|
37
|
+
scalar Float
|
38
|
+
|
39
|
+
"""
|
40
|
+
The ID scalar type represents a unique identifier and it is serialized in the same
|
41
|
+
way as a String but it accepts both numeric and string based values as input.
|
42
|
+
"""
|
43
|
+
scalar ID
|
44
|
+
|
45
|
+
"The Int scalar type represents a signed 32-bit numeric non-fractional value."
|
46
|
+
scalar Int
|
47
|
+
|
48
|
+
"""
|
49
|
+
The JSON scalar type represents an unstructured JSON data
|
50
|
+
with all its available keys and values.
|
51
|
+
"""
|
52
|
+
scalar JSON @specifiedBy(url: "https://www.rfc-editor.org/rfc/rfc8259")
|
53
|
+
|
54
|
+
"""
|
55
|
+
The String scalar type represents textual data, represented as UTF-8 character
|
56
|
+
sequences.
|
57
|
+
"""
|
58
|
+
scalar String
|
59
|
+
|
60
|
+
"""
|
61
|
+
The Time scalar type that represents a distance in time using hours,
|
62
|
+
minutes, seconds, and milliseconds.
|
63
|
+
"""
|
64
|
+
scalar Time @specifiedBy(url: "https://www.rfc-editor.org/rfc/rfc3339")
|
65
|
+
|
66
|
+
"The valid locations that a directive may be placed."
|
67
|
+
enum __DirectiveLocation {
|
68
|
+
"Mark as a executable directive usable on query objects."
|
69
|
+
QUERY
|
70
|
+
|
71
|
+
"Mark as a executable directive usable on mutation objects."
|
72
|
+
MUTATION
|
73
|
+
|
74
|
+
"Mark as a executable directive usable on subscription objects."
|
75
|
+
SUBSCRIPTION
|
76
|
+
|
77
|
+
"Mark as a executable directive usable on field objects."
|
78
|
+
FIELD
|
79
|
+
|
80
|
+
"Mark as a executable directive usable on fragment definition objects."
|
81
|
+
FRAGMENT_DEFINITION
|
82
|
+
|
83
|
+
"Mark as a executable directive usable on fragment spread objects."
|
84
|
+
FRAGMENT_SPREAD
|
85
|
+
|
86
|
+
"Mark as a executable directive usable on inline fragment objects."
|
87
|
+
INLINE_FRAGMENT
|
88
|
+
|
89
|
+
"Mark as a type system directive usable on schema definitions."
|
90
|
+
SCHEMA
|
91
|
+
|
92
|
+
"Mark as a type system directive usable on scalar definitions."
|
93
|
+
SCALAR
|
94
|
+
|
95
|
+
"Mark as a type system directive usable on object definitions."
|
96
|
+
OBJECT
|
97
|
+
|
98
|
+
"Mark as a type system directive usable on field definitions."
|
99
|
+
FIELD_DEFINITION
|
100
|
+
|
101
|
+
"Mark as a type system directive usable on argument definitions."
|
102
|
+
ARGUMENT_DEFINITION
|
103
|
+
|
104
|
+
"Mark as a type system directive usable on interface definitions."
|
105
|
+
INTERFACE
|
106
|
+
|
107
|
+
"Mark as a type system directive usable on union definitions."
|
108
|
+
UNION
|
109
|
+
|
110
|
+
"Mark as a type system directive usable on enum definitions."
|
111
|
+
ENUM
|
112
|
+
|
113
|
+
"Mark as a type system directive usable on enum value definitions."
|
114
|
+
ENUM_VALUE
|
115
|
+
|
116
|
+
"Mark as a type system directive usable on input object definitions."
|
117
|
+
INPUT_OBJECT
|
118
|
+
|
119
|
+
"Mark as a type system directive usable on input field definitions."
|
120
|
+
INPUT_FIELD_DEFINITION
|
121
|
+
}
|
122
|
+
|
123
|
+
"""
|
124
|
+
The fundamental unit of any GraphQL Schema is the type.
|
125
|
+
This enum enlist all the valid base types.
|
126
|
+
"""
|
127
|
+
enum __TypeKind {
|
128
|
+
"Scalar types represent primitive leaf values in a GraphQL type system.\n"
|
129
|
+
SCALAR
|
130
|
+
|
131
|
+
"Objects represent a list of named fields, each of which yield a value of a\nspecific type.\n"
|
132
|
+
OBJECT
|
133
|
+
|
134
|
+
"Interfaces represent a list of named fields and their types.\n"
|
135
|
+
INTERFACE
|
136
|
+
|
137
|
+
"Unions represent an object that could be one of a list of GraphQL Object types.\n"
|
138
|
+
UNION
|
139
|
+
|
140
|
+
"Enum types, like scalar types, also represent leaf values in a GraphQL\ntype system. However Enum types describe the set of possible values.\n"
|
141
|
+
ENUM
|
142
|
+
|
143
|
+
"Objects represent a list of named fields, each of which yield a value of\na specific type.\n"
|
144
|
+
INPUT_OBJECT
|
145
|
+
|
146
|
+
"A GraphQL list is a special collection type which declares the type of\neach item in the List (referred to as the item type of the list).\n"
|
147
|
+
LIST
|
148
|
+
|
149
|
+
"This type wraps an underlying type, and this type acts identically to that wrapped\ntype, with the exception that null is not a valid response for the wrapping type.\n"
|
150
|
+
NON_NULL
|
151
|
+
}
|
152
|
+
|
153
|
+
# Assigned to Jedi class
|
154
|
+
input JediInput {
|
155
|
+
id: ID
|
156
|
+
|
157
|
+
_delete: Boolean = false
|
158
|
+
|
159
|
+
jediTypeId: ID
|
160
|
+
|
161
|
+
name: String
|
162
|
+
}
|
163
|
+
|
164
|
+
# Assigned to JediType class
|
165
|
+
input JediTypeInput {
|
166
|
+
id: ID
|
167
|
+
|
168
|
+
_delete: Boolean = false
|
169
|
+
|
170
|
+
jediAttributes: [JediInput!]
|
171
|
+
|
172
|
+
name: String
|
173
|
+
}
|
174
|
+
|
175
|
+
# Assigned to Jedi class
|
176
|
+
type Jedi {
|
177
|
+
id: ID!
|
178
|
+
|
179
|
+
jediType: JediType
|
180
|
+
|
181
|
+
jediTypeId: ID
|
182
|
+
|
183
|
+
name: String
|
184
|
+
}
|
185
|
+
|
186
|
+
# Assigned to JediType class
|
187
|
+
type JediType {
|
188
|
+
id: ID!
|
189
|
+
|
190
|
+
jedi: [Jedi!]!
|
191
|
+
|
192
|
+
name: String
|
193
|
+
}
|
194
|
+
|
195
|
+
type _Mutation {
|
196
|
+
createJedi(jedi: JediInput!): Jedi!
|
197
|
+
|
198
|
+
createJediType(jediType: JediTypeInput!): JediType!
|
199
|
+
|
200
|
+
deleteJedi(id: ID!): Boolean!
|
201
|
+
|
202
|
+
deleteJediType(id: ID!): Boolean!
|
203
|
+
|
204
|
+
updateJedi(id: ID!, jedi: JediInput!): Jedi!
|
205
|
+
|
206
|
+
updateJediType(id: ID!, jediType: JediTypeInput!): JediType!
|
207
|
+
}
|
208
|
+
|
209
|
+
type _Query {
|
210
|
+
__schema: __Schema!
|
211
|
+
|
212
|
+
__type(name: String!): __Type
|
213
|
+
|
214
|
+
jedi(id: ID!): Jedi!
|
215
|
+
|
216
|
+
jediType(id: ID!): JediType!
|
217
|
+
|
218
|
+
jediTypes(order: String): [JediType!]!
|
219
|
+
|
220
|
+
jedis: [Jedi!]!
|
221
|
+
}
|
222
|
+
|
223
|
+
"""
|
224
|
+
Directives provide a way to describe alternate runtime execution
|
225
|
+
and type validation behavior in a GraphQL document.
|
226
|
+
|
227
|
+
In some cases, you need to provide options to alter GraphQL's execution
|
228
|
+
behavior in ways field arguments will not suffice, such as conditionally
|
229
|
+
including or skipping a field. Directives provide this by describing
|
230
|
+
additional information to the executor.
|
231
|
+
"""
|
232
|
+
# Assigned to Rails::GraphQL::Directive class
|
233
|
+
type __Directive {
|
234
|
+
args: [__InputValue!]!
|
235
|
+
|
236
|
+
description: String
|
237
|
+
|
238
|
+
isRepeatable: Boolean!
|
239
|
+
|
240
|
+
locations: [__DirectiveLocation!]!
|
241
|
+
|
242
|
+
name: String!
|
243
|
+
}
|
244
|
+
|
245
|
+
"""
|
246
|
+
One of the values of an Enum object. It is unique within the Enum set
|
247
|
+
of values. It's a string representation, not a numeric representation,
|
248
|
+
of a value kept as all caps (ie. ONE_VALUE).
|
249
|
+
"""
|
250
|
+
type __EnumValue {
|
251
|
+
deprecationReason: String
|
252
|
+
|
253
|
+
description: String
|
254
|
+
|
255
|
+
isDeprecated: Boolean!
|
256
|
+
|
257
|
+
name: String!
|
258
|
+
}
|
259
|
+
|
260
|
+
"""
|
261
|
+
Fields are the elements that compose both Objects and Interfaces. Each
|
262
|
+
field in these other objects may contain arguments and always yields
|
263
|
+
a value of a specific type.
|
264
|
+
"""
|
265
|
+
# Assigned to Rails::GraphQL::Field class
|
266
|
+
type __Field {
|
267
|
+
args: [__InputValue!]!
|
268
|
+
|
269
|
+
deprecationReason: String
|
270
|
+
|
271
|
+
description: String
|
272
|
+
|
273
|
+
isDeprecated: Boolean!
|
274
|
+
|
275
|
+
name: String!
|
276
|
+
|
277
|
+
type: __Type!
|
278
|
+
}
|
279
|
+
|
280
|
+
"""
|
281
|
+
Arguments provided to Fields or Directives and the input fields of an
|
282
|
+
InputObject are represented as Input Values which describe their type
|
283
|
+
and optionally a default value.
|
284
|
+
"""
|
285
|
+
# Assigned to Rails::GraphQL::Field::InputField class
|
286
|
+
type __InputValue {
|
287
|
+
defaultValue: String
|
288
|
+
|
289
|
+
description: String
|
290
|
+
|
291
|
+
name: String!
|
292
|
+
|
293
|
+
type: __Type!
|
294
|
+
}
|
295
|
+
|
296
|
+
"""
|
297
|
+
A GraphQL service's collective type system capabilities are referred
|
298
|
+
to as that service's "schema". A schema is defined in terms of the
|
299
|
+
types and directives it supports as well as the root operation types
|
300
|
+
for each kind of operation: query, mutation, and subscription; this
|
301
|
+
determines the place in the type system where those operations begin.
|
302
|
+
"""
|
303
|
+
# Assigned to Rails::GraphQL::Schema class
|
304
|
+
type __Schema {
|
305
|
+
directives: [__Directive!]!
|
306
|
+
|
307
|
+
mutationType: __Type
|
308
|
+
|
309
|
+
queryType: __Type!
|
310
|
+
|
311
|
+
subscriptionType: __Type
|
312
|
+
|
313
|
+
types: [__Type!]!
|
314
|
+
}
|
315
|
+
|
316
|
+
"""
|
317
|
+
The fundamental unit of any GraphQL Schema is the type. There are six
|
318
|
+
kinds of named type definitions in GraphQL, and two wrapping types.
|
319
|
+
|
320
|
+
The most basic type is a +Scalar+. A scalar represents a primitive value,
|
321
|
+
like a string or an integer.
|
322
|
+
|
323
|
+
+Scalars+ and +Enums+ form the leaves in response trees; the intermediate
|
324
|
+
levels are +Object+ types, which define a set of fields.
|
325
|
+
|
326
|
+
An +Interface+ defines a list of fields; +Object+ types that implement
|
327
|
+
that interface are guaranteed to implement those fields.
|
328
|
+
|
329
|
+
A +Union+ defines a list of possible types; similar to interfaces,
|
330
|
+
whenever the type system claims a union will be returned, one of the
|
331
|
+
possible types will be returned.
|
332
|
+
|
333
|
+
Finally, oftentimes it is useful to provide complex structs as inputs
|
334
|
+
to GraphQL field arguments or variables; the +Input Object+ type allows
|
335
|
+
the schema to define exactly what data is expected.
|
336
|
+
"""
|
337
|
+
# Assigned to Rails::GraphQL::Type class
|
338
|
+
type __Type {
|
339
|
+
description: String
|
340
|
+
|
341
|
+
"ENUM only"
|
342
|
+
enumValues(includeDeprecated: Boolean = false): [__EnumValue!]
|
343
|
+
|
344
|
+
"OBJECT and INTERFACE only"
|
345
|
+
fields(includeDeprecated: Boolean = false): [__Field!]
|
346
|
+
|
347
|
+
"INPUT_OBJECT only"
|
348
|
+
inputFields: [__InputValue!]
|
349
|
+
|
350
|
+
"OBJECT only"
|
351
|
+
interfaces: [__Type!]
|
352
|
+
|
353
|
+
kind: __TypeKind!
|
354
|
+
|
355
|
+
name: String
|
356
|
+
|
357
|
+
"NON_NULL and LIST only"
|
358
|
+
ofType: __Type
|
359
|
+
|
360
|
+
"INTERFACE and UNION only"
|
361
|
+
possibleTypes: [__Type!]
|
362
|
+
|
363
|
+
specifiedByURL: String
|
364
|
+
}
|
365
|
+
|
366
|
+
"""
|
367
|
+
Indicate deprecated portions of a GraphQL service's schema, such as deprecated
|
368
|
+
fields on a type or deprecated enum values.
|
369
|
+
"""
|
370
|
+
directive @deprecated(
|
371
|
+
|
372
|
+
"""
|
373
|
+
Explain why the underlying element was marked as deprecated. If possible,
|
374
|
+
indicate what element should be used instead. This description is formatted
|
375
|
+
using Markdown syntax (as specified by [CommonMark](http://commonmark.org/)).
|
376
|
+
"""
|
377
|
+
reason: String
|
378
|
+
|
379
|
+
) on FIELD_DEFINITION | ENUM_VALUE
|
380
|
+
|
381
|
+
"Allows for conditional inclusion during execution as described by the if argument."
|
382
|
+
directive @include(
|
383
|
+
|
384
|
+
"When false, the underlying element will be automatically marked as null."
|
385
|
+
if: Boolean!
|
386
|
+
|
387
|
+
) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
|
388
|
+
|
389
|
+
"Allows for conditional exclusion during execution as described by the if argument."
|
390
|
+
directive @skip(
|
391
|
+
|
392
|
+
"When true, the underlying element will be automatically marked as null."
|
393
|
+
if: Boolean!
|
394
|
+
|
395
|
+
) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
|
396
|
+
|
397
|
+
"""
|
398
|
+
A built-in directive used within the type system definition language to provide
|
399
|
+
a scalar specification URL for specifying the behavior of custom scalar types.
|
400
|
+
"""
|
401
|
+
directive @specifiedBy(
|
402
|
+
|
403
|
+
"Point to a human-readable specification of the data format."
|
404
|
+
url: String!
|
405
|
+
|
406
|
+
) on SCALAR
|