OBJECT

User

A finance User.

link GraphQL Schema definition

  • type User implements Node {
  • # A globally unique identifier. Can be used in various places throughout the
  • # system to identify this single value.
  • id: ID!
  • rowId: UUID!
  • clientCompanyRowId: UUID!
  • email: EmailAddr!
  • title: String
  • firstName: String!
  • lastName: String
  • updatedAt: UpdatedTime
  • createdAt: CreatedTime
  • # Reads a single `ClientCompany` that is related to this `User`.
  • clientCompanyByClientCompanyRowId: ClientCompany!
  • # Reads and enables pagination through a set of `AccountingInstruction`.
  • #
  • # 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
  • # `AccountingInstruction`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • accountingInstructionsByUpdatedBy(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [AccountingInstructionsOrderBy!],
  • condition: AccountingInstructionCondition
  • ): AccountingInstructionsConnection!
  • # Reads and enables pagination through a set of `AccountingInstruction`.
  • #
  • # 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
  • # `AccountingInstruction`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • accountingInstructionsByCreatedBy(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [AccountingInstructionsOrderBy!],
  • condition: AccountingInstructionCondition
  • ): AccountingInstructionsConnection!
  • # Reads and enables pagination through a set of `DeletedDocument`.
  • #
  • # 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 `DeletedDocument`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • deletedDocumentsByImportedBy(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DeletedDocumentsOrderBy!],
  • condition: DeletedDocumentCondition
  • ): DeletedDocumentsConnection!
  • # 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.
  • documentsByImportedBy(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentsOrderBy!],
  • condition: DocumentCondition
  • ): DocumentsConnection!
  • # 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.
  • documentsByRearrangedBy(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentsOrderBy!],
  • condition: DocumentCondition
  • ): DocumentsConnection!
  • # 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.
  • documentsByPagesConfirmedBy(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentsOrderBy!],
  • condition: DocumentCondition
  • ): DocumentsConnection!
  • # Reads and enables pagination through a set of `DocumentComment`.
  • #
  • # 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 `DocumentComment`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • documentCommentsByCommentedBy(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentCommentsOrderBy!],
  • condition: DocumentCommentCondition
  • ): DocumentCommentsConnection!
  • # Reads and enables pagination through a set of `DocumentCommentLike`.
  • #
  • # 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 `DocumentCommentLike`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • documentCommentLikesByLikedBy(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentCommentLikesOrderBy!],
  • condition: DocumentCommentLikeCondition
  • ): DocumentCommentLikesConnection!
  • # Reads and enables pagination through a set of `DocumentCommentSeen`.
  • #
  • # 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 `DocumentCommentSeen`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • documentCommentSeensBySeenBy(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentCommentSeensOrderBy!],
  • condition: DocumentCommentSeenCondition
  • ): DocumentCommentSeensConnection!
  • # Reads and enables pagination through a set of `DocumentMoneyTransaction`.
  • #
  • # 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
  • # `DocumentMoneyTransaction`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • documentMoneyTransactionsByCreatedBy(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentMoneyTransactionsOrderBy!],
  • condition: DocumentMoneyTransactionCondition
  • ): DocumentMoneyTransactionsConnection!
  • # Reads and enables pagination through a set of `DocumentMoneyTransaction`.
  • #
  • # 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
  • # `DocumentMoneyTransaction`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • documentMoneyTransactionsByCheckRowIdConfirmedBy(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentMoneyTransactionsOrderBy!],
  • condition: DocumentMoneyTransactionCondition
  • ): DocumentMoneyTransactionsConnection!
  • # Reads and enables pagination through a set of `DocumentVersion`.
  • #
  • # 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 `DocumentVersion`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • documentVersionsByCommitUserRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentVersionsOrderBy!],
  • condition: DocumentVersionCondition
  • ): DocumentVersionsConnection!
  • # Reads and enables pagination through a set of `Export`.
  • #
  • # 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 `Export`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • exportsByCreatedBy(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [ExportsOrderBy!],
  • condition: ExportCondition
  • ): ExportsConnection!
  • # 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.
  • exportDocumentsByRemovedBy(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [ExportDocumentsOrderBy!],
  • condition: ExportDocumentCondition
  • ): ExportDocumentsConnection!
  • # Reads and enables pagination through a set of `InvoiceAccountingItem`.
  • #
  • # 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
  • # `InvoiceAccountingItem`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • invoiceAccountingItemsByUpdatedBy(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [InvoiceAccountingItemsOrderBy!],
  • condition: InvoiceAccountingItemCondition
  • ): InvoiceAccountingItemsConnection!
  • # Reads and enables pagination through a set of `InvoiceAccountingItem`.
  • #
  • # 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
  • # `InvoiceAccountingItem`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • invoiceAccountingItemsByCreatedBy(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [InvoiceAccountingItemsOrderBy!],
  • condition: InvoiceAccountingItemCondition
  • ): InvoiceAccountingItemsConnection!
  • # Reads and enables pagination through a set of `InvoiceAccountingItem35A`.
  • #
  • # 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
  • # `InvoiceAccountingItem35A`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • invoiceAccountingItem35AsByUpdatedBy(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [InvoiceAccountingItem35AsOrderBy!],
  • condition: InvoiceAccountingItem35ACondition
  • ): InvoiceAccountingItem35AsConnection!
  • # Reads and enables pagination through a set of `InvoiceAccountingItem35A`.
  • #
  • # 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
  • # `InvoiceAccountingItem35A`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • invoiceAccountingItem35AsByCreatedBy(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [InvoiceAccountingItem35AsOrderBy!],
  • condition: InvoiceAccountingItem35ACondition
  • ): InvoiceAccountingItem35AsConnection!
  • fullName: String!
  • }

link Require by