upsert property

GraphqlOperation? get upsert

The operation used for any destructive data operations that should use GraphQL's mutation. Only the header of the operation is required. For example

query UpsertPerson($input: PersonInput!) {
  upsertPerson(input: $input) {}
}

Implementation

GraphqlOperation? get upsert => null;