delete property
GraphqlOperation?
get
delete
The operation used for any destructive data operations that
should use GraphQL's mutation
.
Only the header of the operation is required. For example
mutation DeletePerson($input: DeletePersonInput!) {
deletePerson(input: $input) {}
}
Implementation
GraphqlOperation? get delete => null;