DocumentImage
description
DocumentImage type represents an image inside a document. To uniquely identity a document image it would require imageId and documentVersion. So used compound key for DocumentImage entity
type DocumentImage {
id: ID!
document: Document!
relevanceScore: Float
types: [DocumentImageType!]
}
Fields
DocumentImage.id ● ID! non-null scalar graph-ql-types
Document Image id @exposed
DocumentImage.document ● Document! non-null object graph-ql-types
Document data containing the image @exposed
DocumentImage.relevanceScore ● Float scalar graph-ql-types
Shows how relevant the image is for the search parameters. A float value between 0 (least relevant) and 100 (most relevant). @exposed
DocumentImage.types ● [DocumentImageType!] list enum graph-ql-types
Represents the types of image (chart/table/other) One image can have multiple types. For example an image can be a chart as well as a table. @exposed
Returned By
Document__images query
Member Of
Document object ● SearchDocumentImageResponse object