Delete a Request using GraphQl

Hello,

How can we delete a request using GraphQL mutation?

I already use mutation to create requests , but I don’t find an example to delete a request

Best regards,
Sara.

Hello,

This is an example of the deleteRequest mutation:

mutation {
  deleteRequest(input:{
    number: RequestNumber
  }){
    clientMutationId
  }
}

Hi,

Thank you Quentin .

Best regards.