graphql 1.13.3 → 1.13.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/generators/graphql/core.rb +0 -7
- data/lib/generators/graphql/enum_generator.rb +4 -10
- data/lib/generators/graphql/field_extractor.rb +31 -0
- data/lib/generators/graphql/input_generator.rb +50 -0
- data/lib/generators/graphql/install/mutation_root_generator.rb +34 -0
- data/lib/generators/graphql/{templates → install/templates}/base_mutation.erb +0 -0
- data/lib/generators/graphql/{templates → install/templates}/mutation_type.erb +0 -0
- data/lib/generators/graphql/install_generator.rb +1 -1
- data/lib/generators/graphql/interface_generator.rb +7 -7
- data/lib/generators/graphql/mutation_create_generator.rb +22 -0
- data/lib/generators/graphql/mutation_delete_generator.rb +22 -0
- data/lib/generators/graphql/mutation_generator.rb +5 -30
- data/lib/generators/graphql/mutation_update_generator.rb +22 -0
- data/lib/generators/graphql/object_generator.rb +8 -37
- data/lib/generators/graphql/orm_mutations_base.rb +40 -0
- data/lib/generators/graphql/scalar_generator.rb +4 -2
- data/lib/generators/graphql/templates/enum.erb +5 -1
- data/lib/generators/graphql/templates/input.erb +9 -0
- data/lib/generators/graphql/templates/interface.erb +4 -2
- data/lib/generators/graphql/templates/mutation.erb +1 -1
- data/lib/generators/graphql/templates/mutation_create.erb +20 -0
- data/lib/generators/graphql/templates/mutation_delete.erb +20 -0
- data/lib/generators/graphql/templates/mutation_update.erb +21 -0
- data/lib/generators/graphql/templates/object.erb +4 -2
- data/lib/generators/graphql/templates/scalar.erb +3 -1
- data/lib/generators/graphql/templates/union.erb +4 -2
- data/lib/generators/graphql/type_generator.rb +46 -9
- data/lib/generators/graphql/union_generator.rb +5 -5
- data/lib/graphql/analysis/ast/visitor.rb +2 -1
- data/lib/graphql/dataloader/source.rb +2 -2
- data/lib/graphql/date_encoding_error.rb +16 -0
- data/lib/graphql/execution/interpreter/arguments_cache.rb +4 -2
- data/lib/graphql/execution/interpreter/runtime.rb +33 -17
- data/lib/graphql/introspection/directive_location_enum.rb +2 -2
- data/lib/graphql/introspection/directive_type.rb +2 -0
- data/lib/graphql/introspection/schema_type.rb +5 -0
- data/lib/graphql/introspection/type_type.rb +9 -3
- data/lib/graphql/introspection.rb +3 -0
- data/lib/graphql/language/document_from_schema_definition.rb +1 -0
- data/lib/graphql/language/lexer.rb +50 -25
- data/lib/graphql/language/lexer.rl +2 -0
- data/lib/graphql/language/nodes.rb +1 -1
- data/lib/graphql/language/parser.rb +829 -816
- data/lib/graphql/language/parser.y +8 -2
- data/lib/graphql/language/printer.rb +4 -0
- data/lib/graphql/pagination/relation_connection.rb +8 -5
- data/lib/graphql/rubocop/graphql/default_required_true.rb +4 -4
- data/lib/graphql/schema/argument.rb +18 -1
- data/lib/graphql/schema/build_from_definition.rb +1 -0
- data/lib/graphql/schema/directive.rb +15 -0
- data/lib/graphql/schema/field.rb +13 -7
- data/lib/graphql/schema/loader.rb +3 -0
- data/lib/graphql/schema/scalar.rb +12 -0
- data/lib/graphql/schema.rb +12 -5
- data/lib/graphql/static_validation/base_visitor.rb +1 -1
- data/lib/graphql/static_validation/rules/arguments_are_defined.rb +1 -1
- data/lib/graphql/static_validation/rules/directives_are_in_valid_locations.rb +1 -1
- data/lib/graphql/static_validation/rules/required_arguments_are_present.rb +1 -1
- data/lib/graphql/static_validation/rules/unique_directives_per_location.rb +1 -1
- data/lib/graphql/static_validation/validation_context.rb +4 -0
- data/lib/graphql/tracing/active_support_notifications_tracing.rb +1 -1
- data/lib/graphql/tracing/data_dog_tracing.rb +6 -1
- data/lib/graphql/tracing/platform_tracing.rb +11 -6
- data/lib/graphql/types/iso_8601_date.rb +13 -5
- data/lib/graphql/types/iso_8601_date_time.rb +8 -1
- data/lib/graphql/types/relay/connection_behaviors.rb +2 -1
- data/lib/graphql/types/relay/node_field.rb +0 -12
- data/lib/graphql/types/relay/nodes_field.rb +6 -0
- data/lib/graphql/version.rb +1 -1
- data/lib/graphql.rb +12 -0
- metadata +20 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 36daea28ec315c9949f4990d05993a15ea4568086f227d7dd7f151ce092747b6
|
4
|
+
data.tar.gz: 94d9e0598ff0756be7d7a4fde4c2c395ef47926003ad9d2718e9025ef0f7396a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 00c1ba65cb41e6cbc9e4297a90b071f3915e9c8cc550a995f73d357d51ca299c5c478c24678efae9413d6f25fa69ec70b081ec31c120d03c71b93ba82ba291a3
|
7
|
+
data.tar.gz: 0b355f53d23bf5d2afeec35f0e33260a1565d79464a4d2dbc70f915c06964d116111211ba7eb070c3a7f3e86c5e9a31e318a30f5aa122f5ea1c608788f747e1e
|
@@ -25,13 +25,6 @@ module Graphql
|
|
25
25
|
end
|
26
26
|
end
|
27
27
|
|
28
|
-
def create_mutation_root_type
|
29
|
-
create_dir("#{options[:directory]}/mutations")
|
30
|
-
template("base_mutation.erb", "#{options[:directory]}/mutations/base_mutation.rb", { skip: true })
|
31
|
-
template("mutation_type.erb", "#{options[:directory]}/types/mutation_type.rb", { skip: true })
|
32
|
-
insert_root_type('mutation', 'MutationType')
|
33
|
-
end
|
34
|
-
|
35
28
|
def schema_file_path
|
36
29
|
"#{options[:directory]}/#{schema_name.underscore}.rb"
|
37
30
|
end
|
@@ -13,20 +13,14 @@ module Graphql
|
|
13
13
|
desc "Create a GraphQL::EnumType with the given name and values"
|
14
14
|
source_root File.expand_path('../templates', __FILE__)
|
15
15
|
|
16
|
-
|
17
|
-
type: :array,
|
18
|
-
default: [],
|
19
|
-
banner: "value{:ruby_value} value{:ruby_value} ...",
|
20
|
-
desc: "Values for this enum (if present, ruby_value will be inserted verbatim)"
|
16
|
+
private
|
21
17
|
|
22
|
-
def
|
23
|
-
|
18
|
+
def graphql_type
|
19
|
+
"enum"
|
24
20
|
end
|
25
21
|
|
26
|
-
private
|
27
|
-
|
28
22
|
def prepared_values
|
29
|
-
|
23
|
+
custom_fields.map { |v| v.split(":", 2) }
|
30
24
|
end
|
31
25
|
end
|
32
26
|
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'rails/generators/base'
|
3
|
+
|
4
|
+
module Graphql
|
5
|
+
module Generators
|
6
|
+
module FieldExtractor
|
7
|
+
def fields
|
8
|
+
columns = []
|
9
|
+
columns += (klass&.columns&.map { |c| generate_column_string(c) } || [])
|
10
|
+
columns + custom_fields
|
11
|
+
end
|
12
|
+
|
13
|
+
def generate_column_string(column)
|
14
|
+
name = column.name
|
15
|
+
required = column.null ? "" : "!"
|
16
|
+
type = column_type_string(column)
|
17
|
+
"#{name}:#{required}#{type}"
|
18
|
+
end
|
19
|
+
|
20
|
+
def column_type_string(column)
|
21
|
+
column.name == "id" ? "ID" : column.type.to_s.camelize
|
22
|
+
end
|
23
|
+
|
24
|
+
def klass
|
25
|
+
@klass ||= Module.const_get(name.camelize)
|
26
|
+
rescue NameError
|
27
|
+
@klass = nil
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'generators/graphql/type_generator'
|
3
|
+
require 'generators/graphql/field_extractor'
|
4
|
+
|
5
|
+
module Graphql
|
6
|
+
module Generators
|
7
|
+
# Generate an input type by name,
|
8
|
+
# with the specified fields.
|
9
|
+
#
|
10
|
+
# ```
|
11
|
+
# rails g graphql:object PostType name:string!
|
12
|
+
# ```
|
13
|
+
class InputGenerator < TypeGeneratorBase
|
14
|
+
desc "Create a GraphQL::InputObjectType with the given name and fields"
|
15
|
+
source_root File.expand_path('../templates', __FILE__)
|
16
|
+
include FieldExtractor
|
17
|
+
|
18
|
+
def self.normalize_type_expression(type_expression, mode:, null: true)
|
19
|
+
case type_expression.camelize
|
20
|
+
when "Text", "Citext"
|
21
|
+
["String", null]
|
22
|
+
when "Decimal"
|
23
|
+
["Float", null]
|
24
|
+
when "DateTime", "Datetime"
|
25
|
+
["GraphQL::Types::ISO8601DateTime", null]
|
26
|
+
when "Date"
|
27
|
+
["GraphQL::Types::ISO8601Date", null]
|
28
|
+
when "Json", "Jsonb", "Hstore"
|
29
|
+
["GraphQL::Types::JSON", null]
|
30
|
+
else
|
31
|
+
super
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
private
|
36
|
+
|
37
|
+
def graphql_type
|
38
|
+
"input"
|
39
|
+
end
|
40
|
+
|
41
|
+
def type_ruby_name
|
42
|
+
super.gsub(/Type\z/, "InputType")
|
43
|
+
end
|
44
|
+
|
45
|
+
def type_file_name
|
46
|
+
super.gsub(/_type\z/, "_input_type")
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "rails/generators/base"
|
4
|
+
require_relative "../core"
|
5
|
+
|
6
|
+
module Graphql
|
7
|
+
module Generators
|
8
|
+
module Install
|
9
|
+
class MutationRootGenerator < Rails::Generators::Base
|
10
|
+
include Core
|
11
|
+
|
12
|
+
desc "Create mutation base type, mutation root tipe, and adds the latter to the schema"
|
13
|
+
source_root File.expand_path('../templates', __FILE__)
|
14
|
+
|
15
|
+
class_option :schema,
|
16
|
+
type: :string,
|
17
|
+
default: nil,
|
18
|
+
desc: "Name for the schema constant (default: {app_name}Schema)"
|
19
|
+
|
20
|
+
class_option :skip_keeps,
|
21
|
+
type: :boolean,
|
22
|
+
default: false,
|
23
|
+
desc: "Skip .keep files for source control"
|
24
|
+
|
25
|
+
def generate
|
26
|
+
create_dir("#{options[:directory]}/mutations")
|
27
|
+
template("base_mutation.erb", "#{options[:directory]}/mutations/base_mutation.rb", { skip: true })
|
28
|
+
template("mutation_type.erb", "#{options[:directory]}/types/mutation_type.rb", { skip: true })
|
29
|
+
insert_root_type('mutation', 'MutationType')
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
File without changes
|
File without changes
|
@@ -109,7 +109,7 @@ module Graphql
|
|
109
109
|
template("query_type.erb", "#{options[:directory]}/types/query_type.rb")
|
110
110
|
insert_root_type('query', 'QueryType')
|
111
111
|
|
112
|
-
|
112
|
+
invoke "graphql:install:mutation_root" unless options.skip_mutation_root_type?
|
113
113
|
|
114
114
|
template("graphql_controller.erb", "app/controllers/graphql_controller.rb")
|
115
115
|
route('post "/graphql", to: "graphql#execute"')
|
@@ -13,14 +13,14 @@ module Graphql
|
|
13
13
|
desc "Create a GraphQL::InterfaceType with the given name and fields"
|
14
14
|
source_root File.expand_path('../templates', __FILE__)
|
15
15
|
|
16
|
-
|
17
|
-
type: :array,
|
18
|
-
default: [],
|
19
|
-
banner: "name:type name:type ...",
|
20
|
-
desc: "Fields for this interface (type may be expressed as Ruby or GraphQL)"
|
16
|
+
private
|
21
17
|
|
22
|
-
def
|
23
|
-
|
18
|
+
def graphql_type
|
19
|
+
"interface"
|
20
|
+
end
|
21
|
+
|
22
|
+
def fields
|
23
|
+
custom_fields
|
24
24
|
end
|
25
25
|
end
|
26
26
|
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require_relative 'orm_mutations_base'
|
3
|
+
|
4
|
+
module Graphql
|
5
|
+
module Generators
|
6
|
+
# TODO: What other options should be supported?
|
7
|
+
#
|
8
|
+
# @example Generate a `GraphQL::Schema::RelayClassicMutation` by name
|
9
|
+
# rails g graphql:mutation CreatePostMutation
|
10
|
+
class MutationCreateGenerator < OrmMutationsBase
|
11
|
+
|
12
|
+
desc "Scaffold a Relay Classic ORM create mutation for the given model class"
|
13
|
+
source_root File.expand_path('../templates', __FILE__)
|
14
|
+
|
15
|
+
private
|
16
|
+
|
17
|
+
def operation_type
|
18
|
+
"create"
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require_relative 'orm_mutations_base'
|
3
|
+
|
4
|
+
module Graphql
|
5
|
+
module Generators
|
6
|
+
# TODO: What other options should be supported?
|
7
|
+
#
|
8
|
+
# @example Generate a `GraphQL::Schema::RelayClassicMutation` by name
|
9
|
+
# rails g graphql:mutation CreatePostMutation
|
10
|
+
class MutationDeleteGenerator < OrmMutationsBase
|
11
|
+
|
12
|
+
desc "Scaffold a Relay Classic ORM delete mutation for the given model class"
|
13
|
+
source_root File.expand_path('../templates', __FILE__)
|
14
|
+
|
15
|
+
private
|
16
|
+
|
17
|
+
def operation_type
|
18
|
+
"delete"
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -9,47 +9,22 @@ module Graphql
|
|
9
9
|
#
|
10
10
|
# @example Generate a `GraphQL::Schema::RelayClassicMutation` by name
|
11
11
|
# rails g graphql:mutation CreatePostMutation
|
12
|
-
class MutationGenerator < Rails::Generators::
|
12
|
+
class MutationGenerator < Rails::Generators::NamedBase
|
13
13
|
include Core
|
14
14
|
|
15
15
|
desc "Create a Relay Classic mutation by name"
|
16
16
|
source_root File.expand_path('../templates', __FILE__)
|
17
17
|
|
18
|
-
argument :name, type: :string
|
19
|
-
|
20
|
-
def initialize(args, *options) # :nodoc:
|
21
|
-
# Unfreeze name in case it's given as a frozen string
|
22
|
-
args[0] = args[0].dup if args[0].is_a?(String) && args[0].frozen?
|
23
|
-
super
|
24
|
-
|
25
|
-
assign_names!(name)
|
26
|
-
end
|
27
|
-
|
28
|
-
attr_reader :file_name, :mutation_name, :field_name
|
29
|
-
|
30
18
|
def create_mutation_file
|
31
|
-
|
32
|
-
create_mutation_root_type
|
33
|
-
else
|
34
|
-
log :gsub, "#{options[:directory]}/types/mutation_type.rb"
|
35
|
-
end
|
36
|
-
|
37
|
-
template "mutation.erb", "#{options[:directory]}/mutations/#{file_name}.rb"
|
19
|
+
template "mutation.erb", File.join(options[:directory], "/mutations/", class_path, "#{file_name}.rb")
|
38
20
|
|
39
21
|
sentinel = /class .*MutationType\s*<\s*[^\s]+?\n/m
|
40
22
|
in_root do
|
41
|
-
|
42
|
-
|
23
|
+
path = "#{options[:directory]}/types/mutation_type.rb"
|
24
|
+
invoke "graphql:install:mutation_root" unless File.exist?(path)
|
25
|
+
inject_into_file "#{options[:directory]}/types/mutation_type.rb", " field :#{file_name}, mutation: Mutations::#{class_name}\n", after: sentinel, verbose: false, force: false
|
43
26
|
end
|
44
27
|
end
|
45
|
-
|
46
|
-
private
|
47
|
-
|
48
|
-
def assign_names!(name)
|
49
|
-
@field_name = name.camelize.underscore
|
50
|
-
@mutation_name = name.camelize(:upper)
|
51
|
-
@file_name = name.camelize.underscore
|
52
|
-
end
|
53
28
|
end
|
54
29
|
end
|
55
30
|
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require_relative 'orm_mutations_base'
|
3
|
+
|
4
|
+
module Graphql
|
5
|
+
module Generators
|
6
|
+
# TODO: What other options should be supported?
|
7
|
+
#
|
8
|
+
# @example Generate a `GraphQL::Schema::RelayClassicMutation` by name
|
9
|
+
# rails g graphql:mutation CreatePostMutation
|
10
|
+
class MutationUpdateGenerator < OrmMutationsBase
|
11
|
+
|
12
|
+
desc "Scaffold a Relay Classic ORM update mutation for the given model class"
|
13
|
+
source_root File.expand_path('../templates', __FILE__)
|
14
|
+
|
15
|
+
private
|
16
|
+
|
17
|
+
def operation_type
|
18
|
+
"update"
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -1,5 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
require 'generators/graphql/type_generator'
|
3
|
+
require 'generators/graphql/field_extractor'
|
3
4
|
|
4
5
|
module Graphql
|
5
6
|
module Generators
|
@@ -15,31 +16,16 @@ module Graphql
|
|
15
16
|
desc "Create a GraphQL::ObjectType with the given name and fields." \
|
16
17
|
"If the given type name matches an existing ActiveRecord model, the generated type will automatically include fields for the models database columns."
|
17
18
|
source_root File.expand_path('../templates', __FILE__)
|
18
|
-
|
19
|
-
argument :custom_fields,
|
20
|
-
type: :array,
|
21
|
-
default: [],
|
22
|
-
banner: "name:type name:type ...",
|
23
|
-
desc: "Fields for this object (type may be expressed as Ruby or GraphQL)"
|
19
|
+
include FieldExtractor
|
24
20
|
|
25
21
|
class_option :node,
|
26
22
|
type: :boolean,
|
27
23
|
default: false,
|
28
24
|
desc: "Include the Relay Node interface"
|
29
25
|
|
30
|
-
def create_type_file
|
31
|
-
template "object.erb", "#{options[:directory]}/types/#{type_file_name}.rb"
|
32
|
-
end
|
33
|
-
|
34
|
-
def fields
|
35
|
-
columns = []
|
36
|
-
columns += klass.columns.map { |c| generate_column_string(c) } if class_exists?
|
37
|
-
columns + custom_fields
|
38
|
-
end
|
39
|
-
|
40
26
|
def self.normalize_type_expression(type_expression, mode:, null: true)
|
41
|
-
case type_expression
|
42
|
-
when "Text"
|
27
|
+
case type_expression.camelize
|
28
|
+
when "Text", "Citext"
|
43
29
|
["String", null]
|
44
30
|
when "Decimal"
|
45
31
|
["Float", null]
|
@@ -47,6 +33,8 @@ module Graphql
|
|
47
33
|
["GraphQL::Types::ISO8601DateTime", null]
|
48
34
|
when "Date"
|
49
35
|
["GraphQL::Types::ISO8601Date", null]
|
36
|
+
when "Json", "Jsonb", "Hstore"
|
37
|
+
["GraphQL::Types::JSON", null]
|
50
38
|
else
|
51
39
|
super
|
52
40
|
end
|
@@ -54,25 +42,8 @@ module Graphql
|
|
54
42
|
|
55
43
|
private
|
56
44
|
|
57
|
-
def
|
58
|
-
|
59
|
-
required = column.null ? "" : "!"
|
60
|
-
type = column_type_string(column)
|
61
|
-
"#{name}:#{required}#{type}"
|
62
|
-
end
|
63
|
-
|
64
|
-
def column_type_string(column)
|
65
|
-
column.name == "id" ? "ID" : column.type.to_s.camelize
|
66
|
-
end
|
67
|
-
|
68
|
-
def class_exists?
|
69
|
-
klass.is_a?(Class) && klass.ancestors.include?(ActiveRecord::Base)
|
70
|
-
rescue NameError
|
71
|
-
return false
|
72
|
-
end
|
73
|
-
|
74
|
-
def klass
|
75
|
-
@klass ||= Module.const_get(type_name.camelize)
|
45
|
+
def graphql_type
|
46
|
+
"object"
|
76
47
|
end
|
77
48
|
end
|
78
49
|
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'rails/generators'
|
3
|
+
require 'rails/generators/named_base'
|
4
|
+
require_relative 'core'
|
5
|
+
|
6
|
+
module Graphql
|
7
|
+
module Generators
|
8
|
+
# TODO: What other options should be supported?
|
9
|
+
#
|
10
|
+
# @example Generate a `GraphQL::Schema::RelayClassicMutation` by name
|
11
|
+
# rails g graphql:mutation CreatePostMutation
|
12
|
+
class OrmMutationsBase < Rails::Generators::NamedBase
|
13
|
+
include Core
|
14
|
+
include Rails::Generators::ResourceHelpers
|
15
|
+
|
16
|
+
desc "Create a Relay Classic mutation by name"
|
17
|
+
|
18
|
+
class_option :orm, banner: "NAME", type: :string, required: true,
|
19
|
+
desc: "ORM to generate the controller for"
|
20
|
+
|
21
|
+
class_option 'namespaced_types',
|
22
|
+
type: :boolean,
|
23
|
+
required: false,
|
24
|
+
default: false,
|
25
|
+
banner: "Namespaced",
|
26
|
+
desc: "If the generated types will be namespaced"
|
27
|
+
|
28
|
+
def create_mutation_file
|
29
|
+
template "mutation_#{operation_type}.erb", File.join(options[:directory], "/mutations/", class_path, "#{file_name}_#{operation_type}.rb")
|
30
|
+
|
31
|
+
sentinel = /class .*MutationType\s*<\s*[^\s]+?\n/m
|
32
|
+
in_root do
|
33
|
+
path = "#{options[:directory]}/types/mutation_type.rb"
|
34
|
+
invoke "graphql:install:mutation_root" unless File.exist?(path)
|
35
|
+
inject_into_file "#{options[:directory]}/types/mutation_type.rb", " field :#{file_name}_#{operation_type}, mutation: Mutations::#{class_name}#{operation_type.classify}\n", after: sentinel, verbose: false, force: false
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -12,8 +12,10 @@ module Graphql
|
|
12
12
|
desc "Create a GraphQL::ScalarType with the given name"
|
13
13
|
source_root File.expand_path('../templates', __FILE__)
|
14
14
|
|
15
|
-
|
16
|
-
|
15
|
+
private
|
16
|
+
|
17
|
+
def graphql_type
|
18
|
+
"scalar"
|
17
19
|
end
|
18
20
|
end
|
19
21
|
end
|
@@ -1,6 +1,10 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
<% module_namespacing_when_supported do -%>
|
2
4
|
module Types
|
3
|
-
class <%=
|
5
|
+
class <%= ruby_class_name %> < Types::BaseEnum
|
6
|
+
description "<%= human_name %> enum"
|
7
|
+
|
4
8
|
<% prepared_values.each do |v| %> value "<%= v[0] %>"<%= v.length > 1 ? ", value: #{v[1]}" : "" %>
|
5
9
|
<% end %> end
|
6
10
|
end
|
@@ -1,8 +1,10 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
<% module_namespacing_when_supported do -%>
|
2
4
|
module Types
|
3
|
-
module <%=
|
5
|
+
module <%= ruby_class_name %>
|
4
6
|
include Types::BaseInterface
|
5
|
-
<% normalized_fields.each do |f| %> <%= f.
|
7
|
+
<% normalized_fields.each do |f| %> <%= f.to_object_field %>
|
6
8
|
<% end %> end
|
7
9
|
end
|
8
10
|
<% end -%>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
<% module_namespacing_when_supported do -%>
|
4
|
+
module Mutations
|
5
|
+
class <%= class_name %>Create < BaseMutation
|
6
|
+
description "Creates a new <%= file_name %>"
|
7
|
+
|
8
|
+
field :<%= file_name %>, Types::<%= options[:namespaced_types] ? 'Objects::' : '' %><%= class_name %>Type, null: false
|
9
|
+
|
10
|
+
argument :<%= file_name %>_input, Types::<%= options[:namespaced_types] ? 'Inputs::' : '' %><%= class_name %>InputType, required: true
|
11
|
+
|
12
|
+
def resolve(<%= file_name %>_input:)
|
13
|
+
<%= singular_table_name %> = ::<%= orm_class.build(class_name, "**#{file_name}_input") %>
|
14
|
+
raise GraphQL::ExecutionError.new "Error creating <%= file_name %>", extensions: <%= singular_table_name %>.errors.to_hash unless <%= orm_instance.save %>
|
15
|
+
|
16
|
+
{ <%= file_name %>: <%= singular_table_name %> }
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
<% end -%>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
<% module_namespacing_when_supported do -%>
|
4
|
+
module Mutations
|
5
|
+
class <%= class_name %>Delete < BaseMutation
|
6
|
+
description "Deletes a <%= file_name %> by ID"
|
7
|
+
|
8
|
+
field :<%= file_name %>, Types::<%= options[:namespaced_types] ? 'Objects::' : '' %><%= class_name %>Type, null: false
|
9
|
+
|
10
|
+
argument :id, ID, required: true
|
11
|
+
|
12
|
+
def resolve(id:)
|
13
|
+
<%= singular_table_name %> = ::<%= orm_class.find(class_name, "id") %>
|
14
|
+
raise GraphQL::ExecutionError.new "Error deleting <%= file_name %>", extensions: <%= singular_table_name %>.errors.to_hash unless <%= orm_instance.destroy %>
|
15
|
+
|
16
|
+
{ <%= file_name %>: <%= singular_table_name %> }
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
<% end -%>
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
<% module_namespacing_when_supported do -%>
|
4
|
+
module Mutations
|
5
|
+
class <%= class_name %>Update < BaseMutation
|
6
|
+
description "Updates a <%= file_name %> by id"
|
7
|
+
|
8
|
+
field :<%= file_name %>, Types::<%= options[:namespaced_types] ? 'Objects::' : '' %><%= class_name %>Type, null: false
|
9
|
+
|
10
|
+
argument :id, ID, required: true
|
11
|
+
argument :<%= file_name %>_input, Types::<%= options[:namespaced_types] ? 'Inputs::' : '' %><%= class_name %>InputType, required: true
|
12
|
+
|
13
|
+
def resolve(id:, <%= file_name %>_input:)
|
14
|
+
<%= singular_table_name %> = ::<%= orm_class.find(class_name, "id") %>
|
15
|
+
raise GraphQL::ExecutionError.new "Error updating <%= file_name %>", extensions: <%= singular_table_name %>.errors.to_hash unless <%= orm_instance.update("**#{file_name}_input") %>
|
16
|
+
|
17
|
+
{ <%= file_name %>: <%= singular_table_name %> }
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
<% end -%>
|
@@ -1,8 +1,10 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
<% module_namespacing_when_supported do -%>
|
2
4
|
module Types
|
3
|
-
class <%=
|
5
|
+
class <%= ruby_class_name %> < Types::BaseObject
|
4
6
|
<% if options.node %> implements GraphQL::Types::Relay::Node
|
5
|
-
<% end %><% normalized_fields.each do |f| %> <%= f.
|
7
|
+
<% end %><% normalized_fields.each do |f| %> <%= f.to_object_field %>
|
6
8
|
<% end %> end
|
7
9
|
end
|
8
10
|
<% end -%>
|
@@ -1,6 +1,8 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
<% module_namespacing_when_supported do -%>
|
2
4
|
module Types
|
3
|
-
class <%=
|
5
|
+
class <%= ruby_class_name %> < Types::BaseScalar
|
4
6
|
def self.coerce_input(input_value, context)
|
5
7
|
# Override this to prepare a client-provided GraphQL value for your Ruby code
|
6
8
|
input_value
|
@@ -1,7 +1,9 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
<% module_namespacing_when_supported do -%>
|
2
4
|
module Types
|
3
|
-
class <%=
|
4
|
-
<% if
|
5
|
+
class <%= ruby_class_name %> < Types::BaseUnion
|
6
|
+
<% if custom_fields.any? %> possible_types <%= normalized_possible_types.join(", ") %>
|
5
7
|
<% end %> end
|
6
8
|
end
|
7
9
|
<% end -%>
|