INPUT_OBJECT
DocumentCondition
A condition to be used against Document object types. All fields are tested
for equality and combined with a logical ‘and.’
link GraphQL Schema definition
- input DocumentCondition {
- # Checks for equality with the object’s `rowId` field.
- : UUID
- # Checks for equality with the object’s `type` field.
- : DocumentType
- # Checks for equality with the object’s `categoryRowId` field.
- : UUID
- # Checks for equality with the object’s `clientCompanyRowId` field.
- : UUID
- # Checks for equality with the object’s `baseDocumentRowId` field.
- : UUID
- # Checks for equality with the object’s `title` field.
- : String
- # Checks for equality with the object’s `name` field.
- : String
- # Checks for equality with the object’s `language` field.
- : LanguageCode
- # Checks for equality with the object’s `version` field.
- : Datetime
- # Checks for equality with the object’s `numPages` field.
- : Int
- # Checks for equality with the object’s `numAttachPages` field.
- : Int
- # Checks for equality with the object’s `workflowStepRowId` field.
- : UUID
- # Checks for equality with the object’s `importedBy` field.
- : UUID
- # Checks for equality with the object’s `importedAt` field.
- : Datetime
- # Checks for equality with the object’s `sourceDate` field.
- : Datetime
- # Checks for equality with the object’s `source` field.
- : String
- # Checks for equality with the object’s `sourceRowId` field.
- : String
- # Checks for equality with the object’s `sourceFile` field.
- : String
- # Checks for equality with the object’s `sourceFileHash` field.
- : String
- # Checks for equality with the object’s `fulltext` field.
- : String
- # Checks for equality with the object’s `archived` field.
- : Boolean
- # Checks for equality with the object’s `supersedes` field.
- : UUID
- # Checks for equality with the object’s `rearrangedAt` field.
- : Datetime
- # Checks for equality with the object’s `rearrangedBy` field.
- : UUID
- # Checks for equality with the object’s `pagesConfirmedAt` field.
- : Datetime
- # Checks for equality with the object’s `pagesConfirmedBy` field.
- : UUID
- # Checks for equality with the object’s `updatedAt` field.
- : UpdatedTime
- # Checks for equality with the object’s `createdAt` field.
- : CreatedTime
- # Checks for equality with the object’s `tags` field.
- : [String]
- }
link Require by
- ClientCompanyRepresents a `Company` which is a finance *client* company.
- DeletedDocumentA `DeletedDocument` is marked as deleted but can be restored.
- DocumentA `Document` which can be any form of document (invoice, delivery note, statement, etc.).
- DocumentCategoryA `DocumentCategory` is a category of a document.
- DocumentWorkflowStepA `DocumentWorkflowStep` is a step which belongs to a `DocumentWorkflow`. A `Document` can be in a single `DocumentWorkflowStep` at a time.
- QueryThe root query type which gives access points into the data universe.
- UserA finance `User`.