OBJECT
DeletedDocument
A DeletedDocument is marked as deleted but can be restored.
link GraphQL Schema definition
- type DeletedDocument implements Node {
- # A globally unique identifier. Can be used in various places throughout the
- # system to identify this single value.
- : ID!
- : UUID!
- : String
- : UUID!
- : UUID!
- : UUID
- : String!
- : LanguageCode!
- : Datetime
- : Int!
- : Int!
- : UUID
- : Datetime!
- : UpdatedTime
- : CreatedTime
- # Reads a single `DocumentCategory` that is related to this `DeletedDocument`.
- : DocumentCategory!
- # Reads a single `ClientCompany` that is related to this `DeletedDocument`.
- : ClientCompany!
- # Reads a single `Document` that is related to this `DeletedDocument`.
- : Document
- # Reads a single `User` that is related to this `DeletedDocument`.
- : User
- # Reads and enables pagination through a set of `Document`.
- #
- # Arguments
- # first: Only read the first `n` values of the set.
- # last: Only read the last `n` values of the set.
- # offset: Skip the first `n` values from our `after` cursor, an
- # alternative to cursor
- # based pagination. May not be used with `last`.
- # before: Read all values in the set before (above) this cursor.
- # after: Read all values in the set after (below) this cursor.
- # orderBy: The method to use when ordering `Document`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [DocumentsOrderBy!],
- : DocumentCondition
- ): DocumentsConnection!
- }
link Require by
- DeletedDocumentsConnectionA connection to a list of `DeletedDocument` values.
- DeletedDocumentsEdgeA `DeletedDocument` edge in the connection.
- DocumentA `Document` which can be any form of document (invoice, delivery note, statement, etc.).
- QueryThe root query type which gives access points into the data universe.
- UpdateDocumentPayloadThe output of our `updateDocument` mutation.