OBJECT

Ledger

Ledger details

link GraphQL Schema definition

  • type Ledger {
  • # Available funds in the ledger
  • #
  • # Arguments
  • # transactionDate: Available funds at time of transaction
  • availableFunds(transactionDate: String): Float!
  • # When the ledger was created
  • createdAt: ISO8601DateTime!
  • # ID of the ledger
  • id: ID!
  • # Legal name of the ledger
  • legalName: String!
  • # Number of the ledger
  • number: Int!
  • # Trusts of the Account
  • trust: Trust!
  • # When the ledger was last updated
  • updatedAt: ISO8601DateTime!
  • }