Skip to main content

DeleteImagePayload

The output of our delete Image mutation.

type DeleteImagePayload {
clientMutationId: String
image: Image
query: Query
imageType: ImageType
imageEdge(
orderBy: [ImagesOrderBy!] = [PRIMARY_KEY_ASC]
): ImagesEdge
}

Fields

DeleteImagePayload.clientMutationId ● String scalar

The exact same clientMutationId that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.

DeleteImagePayload.image ● Image object

The Image that was deleted by this mutation.

DeleteImagePayload.query ● Query object

Our root query field type. Allows us to run any query from our mutation payload.

DeleteImagePayload.imageType ● ImageType object

Reads a single ImageType that is related to this Image.

DeleteImagePayload.imageEdge ● ImagesEdge object

An edge for our Image. May be used by Relay 1.

DeleteImagePayload.imageEdge.orderBy ● [ImagesOrderBy!] list enum

The method to use when ordering Image.

Returned By

deleteImage mutation