OBJECT
Export
link GraphQL Schema definition
- type Export implements Node {
- # A globally unique identifier. Can be used in various places throughout the
- # system to identify this single value.
- : ID!
- : UUID!
- : UUID!
- : Boolean!
- : Boolean!
- : AuditTrailPos!
- : AccountingSystem
- : Date
- : Boolean!
- : Boolean!
- : UUID!
- : CreatedTime!
- # Reads a single `ClientCompany` that is related to this `Export`.
- : ClientCompany!
- # Reads a single `User` that is related to this `Export`.
- : User!
- # Reads and enables pagination through a set of `ExportDocument`.
- #
- # 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 `ExportDocument`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [ExportDocumentsOrderBy!],
- : ExportDocumentCondition
- ): ExportDocumentsConnection!
- # 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.
- (: Int, : Int, : Int, : Cursor, : Cursor): DocumentsConnection!
- }