Closed manuelduarte077 closed 2 years ago
return Mutation(
options: MutationOptions(
document: DELETE_NETWORK_MUTATION_DOCUMENT,
operationName: DELETE_NETWORK_MUTATION_DOCUMENT_OPERATION_NAME,
),
builder: (runMutation, result) {
...
runMutation(
DeleteNetworkArguments(
networkId: networkFrag.id,
).toJson(),
);
I have a query where I can see, how to use mutations and subscriptions, I've been looking but I couldn't find it, maybe I'm doing it wrong.
Thank you so much :)