mutate method
Executes a GraphQL mutation and returns a promise with the result.
Implementation
Future<Map<String, dynamic>?> mutate({required String query}) => _client
.mutate(graphql.MutationOptions(document: graphql.gql(query)))
.then((value) => value.data);