OBJECT

AgentLedger

Agent ledgers

link GraphQL Schema definition

  • type AgentLedger {
  • # Agent who the ledger is associated with
  • agent: Agent
  • # Transactions
  • #
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • # offset: [Not documented]
  • # limit: [Not documented]
  • # orderBy: [Not documented]
  • # updatedBefore: [Not documented]
  • # updatedAfter: [Not documented]
  • agentLedgerTransactions(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • offset: Int,
  • limit: Int,
  • orderBy: AgentLedgerTransactionOrderEnum,
  • updatedBefore: ISO8601DateTime,
  • updatedAfter: ISO8601DateTime
  • ): AgentLedgerTransactionConnection!
  • # When the ledger was archived
  • archivedAt: ISO8601DateTime
  • # Id of the agent ledger
  • id: ID!
  • # Amount of the transaction
  • name: String!
  • }