Skip to main content

ModelImage

Model image is an entity that represents an image attached to the model.

type ModelImage {
id: ID!
model: Model
url: String!
imageType: ModelImageType!
referenceImageId: String
parsedBodyData: String
}

Fields

ModelImage.id ● ID! non-null scalar

Autogenerated unique uuid.

ModelImage.model ● Model object

Model that the image is attached to.

ModelImage.url ● String! non-null scalar

Url of the image.

ModelImage.imageType ● ModelImageType! non-null enum

Type of the image.

ModelImage.referenceImageId ● String scalar

Reference image id in your system.

ModelImage.parsedBodyData ● String scalar

Parsed JSON data from the image.

Returned By

createModelImage mutation ● updateModelImage mutation

Member Of

Model object