common-pages-mutation-delete.gql 162 Bytes
Newer Older
Nicolas Giard's avatar
Nicolas Giard committed
1 2 3 4 5 6 7 8 9 10 11 12
mutation($id: Int!) {
  pages {
    delete(id: $id) {
      responseResult {
        succeeded
        errorCode
        slug
        message
      }
    }
  }
}