base_mutation.rb 427 B

12345678910111213
  1. # frozen_string_literal: true
  2. class Mutations::BaseMutation < GraphQL::Schema::Mutation
  3. # Add your custom classes if you have them:
  4. # This is used for generating payload types
  5. # object_class Types::BaseObject
  6. # This is used for return fields on the mutation's payload
  7. # field_class Types::BaseField
  8. # This is used for generating the `input: { ... }` object type
  9. # input_object_class Types::BaseInputObject
  10. end