OBJECT

GeneralLedgerAccount

link GraphQL Schema definition

  • type GeneralLedgerAccount implements Node {
  • # A globally unique identifier. Can be used in various places throughout the
  • # system to identify this single value.
  • id: ID!
  • rowId: UUID!
  • number: AccountNo!
  • currency: CurrencyCode
  • name: TrimmedText
  • category: TrimmedText
  • updatedAt: UpdatedTime!
  • createdAt: CreatedTime!
  • # Reads and enables pagination through a set of `BankAccount`.
  • #
  • # 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 `BankAccount`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • bankAccountsByGeneralLedgerAccountRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [BankAccountsOrderBy!],
  • condition: BankAccountCondition
  • ): BankAccountsConnection!
  • # Reads and enables pagination through a set of `DocumentCategory`.
  • #
  • # 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 `DocumentCategory`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • documentCategoriesByGeneralLedgerAccountRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [DocumentCategoriesOrderBy!],
  • condition: DocumentCategoryCondition
  • ): DocumentCategoriesConnection!
  • # 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.
  • invoiceAccountingItemsByGeneralLedgerAccountRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [InvoiceAccountingItemsOrderBy!],
  • condition: InvoiceAccountingItemCondition
  • ): InvoiceAccountingItemsConnection!
  • }