MutationOptions


interface MutationOptions extends BaseTypeOptions {
  name?: string
  description?: string
  deprecationReason?: string
  complexity?: Complexity

  // inherited from graphql/packages/graphql/lib/BaseTypeOptions
  nullable?: boolean | NullableList
  defaultValue?: T
}

Properties

Property Description
name?: string

Name of the mutation.

description?: string

Description of the mutation.

deprecationReason?: string

Mutation deprecation reason (if deprecated).

complexity?: Complexity

Mutation complexity options.