OBJECT
BankAccount
link GraphQL Schema definition
- type BankAccount implements Node {
- # A globally unique identifier. Can be used in various places throughout the
- # system to identify this single value.
- : ID!
- : UUID!
- : UUID!
- : String!
- : BankIban!
- : TrimmedText
- : BankAccountType!
- : TrimmedText
- : TrimmedText!
- : TrimmedText
- : CurrencyCode!
- : Float
- : Float
- : Float
- : UUID
- : String
- : Boolean!
- : Boolean!
- : UpdatedTime
- : CreatedTime
- # Reads a single `ClientCompany` that is related to this `BankAccount`.
- : ClientCompany!
- # Reads a single `GeneralLedgerAccount` that is related to this `BankAccount`.
- : GeneralLedgerAccount
- # Reads and enables pagination through a set of `BankTransaction`.
- #
- # 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 `BankTransaction`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [BankTransactionsOrderBy!],
- : BankTransactionCondition
- ): BankTransactionsConnection!
- # Reads and enables pagination through a set of `CreditCardAccount`.
- #
- # 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 `CreditCardAccount`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [CreditCardAccountsOrderBy!],
- : CreditCardAccountCondition
- ): CreditCardAccountsConnection!
- # Reads and enables pagination through a set of `Invoice`.
- #
- # 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 `Invoice`.
- # condition: A condition to be used in determining which values
- # should be returned by the collection.
- (
- : Int,
- : Int,
- : Int,
- : Cursor,
- : Cursor,
- : [InvoicesOrderBy!],
- : InvoiceCondition
- ): InvoicesConnection!
- }
link Require by
- BankAccountsConnectionA connection to a list of `BankAccount` values.
- BankAccountsEdgeA `BankAccount` edge in the connection.
- BankTransactionnull
- CreditCardAccountnull
- InvoiceA `Document` representing an `Invoice`.
- QueryThe root query type which gives access points into the data universe.
- UpdateInvoiceDatePayloadThe output of our `updateInvoiceDate` mutation.
- UpdateInvoiceDeliveryNoteNumbersPayloadThe output of our `updateInvoiceDeliveryNoteNumbers` mutation.
- UpdateInvoiceInternalNumberPayloadThe output of our `updateInvoiceInternalNumber` mutation.
- UpdateInvoiceNumberPayloadThe output of our `updateInvoiceNumber` mutation.
- UpdateInvoiceOpenItemsNumberPayloadThe output of our `updateInvoiceOpenItemsNumber` mutation.
- UpdateInvoiceOrderDatePayloadThe output of our `updateInvoiceOrderDate` mutation.
- UpdateInvoiceOrderNumberPayloadThe output of our `updateInvoiceOrderNumber` mutation.
- UpdateInvoicePaymentStatusPayloadThe output of our `updateInvoicePaymentStatus` mutation.
- UpdateInvoicePurchasePayloadThe output of our `updateInvoicePurchase` mutation.