Skip to main content

UpdateImagePayload

The output of our update Image mutation.

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

Fields

UpdateImagePayload.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.

UpdateImagePayload.image ● Image object

The Image that was updated by this mutation.

UpdateImagePayload.query ● Query object

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

UpdateImagePayload.imageType ● ImageType object

Reads a single ImageType that is related to this Image.

UpdateImagePayload.imageEdge ● ImagesEdge object

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

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

The method to use when ordering Image.

Returned By

updateImage mutation