We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
In a legacy app, you may wish to mix old/new style mutations. A few changes are required:
Opt your Schema into the new API (it's backwards compatible, while the old API is not forwards compatible):
- Schema = GraphQL::Schema.define + class Schema < GraphQL::Schema
Opt your base mutation class into the new API:
- MutationType = GraphQL::ObjectType.define do - name "Mutation" + class MutationType < GraphQL::Schema::Object + graphql_name "Mutation"
Leave old mutations alone and create new mutations using the new syntax:
field :old, field: OldMutation.field + field :new, mutation: NewMutation
Home