Delete mutation @id field

Hey Jonathan. Try using the following :

Mutation

mutation deleteTest($custom_id: String!) {
  deleteTest(filter: {name: {allofterms: $custom_id}}) {
    msg
  }
}

Input

{
"custom_id" : "equivalent user name"
}
1 Like