Schema Documentation

deletePage

Description

The payload for the deletePage mutation

Response

Returns a DeletePagePayload

Arguments
NameDescription
input - DeletePageInput! Input for the deletePage mutation

Example

Query
mutation deletePage($input: DeletePageInput!){
  deletePage(input: $input){
    clientMutationIddeletedIdpage {
      ...PageFragment
    }
  }
}
Variables
{"input":DeletePageInput}
Response
{"data":{"deletePage":{"clientMutationId":"abc123","deletedId":4,"page":Page}}}