blob: 9af1f09c8abe17c5b6e9b0f1f33a9f76f3efb6c3 [file] [log] [blame]
type Image {
id: ID!
objectPath: String! @search(by: [exact])
segments: [ImageSegment] @hasInverse(field: sourceImage)
}
type ImageSegment {
id: ID!
upperLeftX: Float!
upperLeftY: Float!
lowerRightX: Float!
lowerRightY: Float!
sourceImage: Image!
objectPath: String
}