Pablo Martí

Results 2 comments of Pablo Martí

Another temporary solution might be: ``` try { const {data} = await someMutation({ variables: { ... } }) if (data.errors?.length > 0) { // some errors } else { //...

Thank you @miklosbagi, that worked for me.