OBJECT

CreditCardAccount

link GraphQL Schema definition

  • type CreditCardAccount 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!
  • bankAccountRowId: UUID
  • number: String!
  • type: CreditCardType!
  • name: String!
  • currency: CurrencyCode!
  • available: Float
  • limit: Float
  • balance: Float
  • updatedAt: UpdatedTime
  • createdAt: CreatedTime
  • # Reads a single `ClientCompany` that is related to this `CreditCardAccount`.
  • clientCompanyByClientCompanyRowId: ClientCompany!
  • # Reads a single `BankAccount` that is related to this `CreditCardAccount`.
  • bankAccountByBankAccountRowId: BankAccount
  • # Reads and enables pagination through a set of `CreditCardTransaction`.
  • #
  • # 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
  • # `CreditCardTransaction`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • creditCardTransactionsByAccountRowId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [CreditCardTransactionsOrderBy!],
  • condition: CreditCardTransactionCondition
  • ): CreditCardTransactionsConnection!
  • }