Class: GraphQL::Schema::Mutation
- Extended by:
- GraphQL::Schema::Member::HasFields, Resolver::HasPayloadType
- Defined in:
- lib/graphql/schema/mutation.rb
Overview
This base class accepts configuration for a mutation root field, then it can be hooked up to your mutation root object type.
If you want to customize how this class generates types, in your base class,
override the various generate_*
methods.
Direct Known Subclasses
Constant Summary
Constants included from GraphQL::Schema::Member::HasFields
GraphQL::Schema::Member::HasFields::CONFLICT_FIELD_NAMES, GraphQL::Schema::Member::HasFields::GRAPHQL_RUBY_KEYWORDS, GraphQL::Schema::Member::HasFields::RUBY_KEYWORDS
Constants included from Resolver::HasPayloadType
Resolver::HasPayloadType::NO_INTERFACES
Constants included from GraphQL::Schema::Member::HasArguments
GraphQL::Schema::Member::HasArguments::NO_ARGUMENTS
Constants included from EmptyObjects
EmptyObjects::EMPTY_ARRAY, EmptyObjects::EMPTY_HASH
Constants included from GraphQL::Schema::Member::GraphQLTypeNames
GraphQL::Schema::Member::GraphQLTypeNames::Boolean, GraphQL::Schema::Member::GraphQLTypeNames::ID, GraphQL::Schema::Member::GraphQLTypeNames::Int
Instance Attribute Summary
Attributes inherited from Resolver
Attributes included from GraphQL::Schema::Member::BaseDSLMethods
#default_graphql_name, #graphql_name
Class Method Summary collapse
Instance Method Summary collapse
Methods included from GraphQL::Schema::Member::HasFields
add_field, all_field_definitions, field, field_class, global_id_field, own_fields
Methods included from Resolver::HasPayloadType
field, field_class, object_class, payload_type, type
Methods inherited from Resolver
all_field_argument_definitions, any_field_arguments?, argument, #arguments, #authorized?, broadcastable, broadcastable?, complexity, #dataloader, default_page_size, extension, extensions, extras, field_arguments, get_field_argument, has_default_page_size?, has_max_page_size?, #initialize, max_page_size, null, #ready?, #resolve, resolve_method, #resolve_with_support, resolver_method, type, type_expr, #unauthorized_object
Methods included from GraphQL::Schema::Member::BaseDSLMethods
#authorized?, #comment, #default_relay, #description, #introspection, #introspection?, #mutation, #name, #visible?
Methods included from GraphQL::Schema::Member::HasArguments
#add_argument, #all_argument_definitions, #any_arguments?, #argument, #argument_class, #arguments, #arguments_statically_coercible?, #coerce_arguments, #get_argument, #own_arguments, #remove_argument, #validate_directive_argument
Methods included from GraphQL::Schema::Member::HasValidators
Methods included from GraphQL::Schema::Member::HasPath
Methods included from GraphQL::Schema::Member::HasDirectives
add_directive, #directive, #directives, get_directives, #inherited, #remove_directive, remove_directive
Constructor Details
This class inherits a constructor from GraphQL::Schema::Resolver
Class Method Details
.visible?(context) ⇒ Boolean
73 74 75 |
# File 'lib/graphql/schema/mutation.rb', line 73 def visible?(context) true end |
Instance Method Details
#call_resolve(_args_hash) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
66 67 68 69 70 |
# File 'lib/graphql/schema/mutation.rb', line 66 def call_resolve(_args_hash) # Clear any cached values from `loads` or authorization: dataloader.clear_cache super end |