Skip to content

Latest commit

 

History

History
30 lines (30 loc) · 449 Bytes

DELETE_DOC.md

File metadata and controls

30 lines (30 loc) · 449 Bytes

DELETE_DOC Mutation

Query

mutation DELETE_DOC($doctype: String!, $name: String!) {
    deleteDoc(doctype: $doctype, name: $name) {
        doctype,
        name,
        success
    }
}

Variables

{
  "doctype":  "Test Doctype",
  "name": "Example Doc"
}

Response

{
  "data": {
    "deleteDoc": {
      "doctype": "Test Doctype",
      "name": "Example Doc",
      "success": true
    }
  }
}