OBJECT

Account

Represents a single account on Stellar network

link GraphQL Schema definition

  • type Account {
  • # Account's [public
  • # key](https://www.stellar.org/developers/guides/concepts/accounts.html#account-id)
  • id: AccountID!
  • # The current transaction sequence number of the account
  • sequenceNumber: String!
  • # Number of other
  • # [entries](https://www.stellar.org/developers/guides/concepts/ledger.html#ledger-entries)
  • # the account owns
  • numSubentries: Int!
  • # A minimum balance of luments account must maintain
  • reservedBalance: String!
  • # Account designated to receive
  • # [inflation](https://www.stellar.org/developers/guides/concepts/inflation.html)
  • inflationDestination: Account
  • # A domain name that can be added to the account. [More
  • # info](https://www.stellar.org/developers/guides/concepts/accounts.html#home-domain)
  • homeDomain: String
  • # Thresholds for different access levels this account set
  • thresholds: AccountThresholds!
  • # [Signers](https://www.stellar.org/developers/guides/concepts/multi-sig.html) of
  • # the account
  • signers: [Signer]
  • # Ledger, in which account was modified last time
  • ledger: Ledger!
  • # [Data
  • # entries](https://www.stellar.org/developers/guides/concepts/list-of-operations.html#manage-data),
  • # attached to the account
  • data: [DataEntry]
  • # All assets, issued by this account
  • #
  • # Arguments
  • # first:
  • # after:
  • # last:
  • # before:
  • assets(first: Int, after: String, last: Int, before: String): AssetConnection
  • # [Balances](https://www.stellar.org/developers/guides/concepts/assets.html#trustlines)
  • # of this account
  • balances: [Balance]
  • # A list of
  • # [operations](https://www.stellar.org/developers/guides/concepts/operations.html)
  • # on the Stellar network that the account performed
  • #
  • # Arguments
  • # type:
  • # first:
  • # after:
  • # last:
  • # before:
  • # order:
  • operations(
  • type: [OperationType],
  • first: Int,
  • after: String,
  • last: Int,
  • before: String,
  • order: Order
  • ): OperationConnection
  • # A list of payment-related operations where the given account was either the
  • # sender or receiver
  • # The payment-related operations are:
  • #
  • #
  • # - create account
  • #
  • # - payment
  • #
  • # - path payment
  • #
  • # - account merge
  • #
  • # Arguments
  • # first:
  • # after:
  • # last:
  • # before:
  • payments(first: Int, after: String, last: Int, before: String): OperationConnection
  • # Arguments
  • # first:
  • # after:
  • # last:
  • # before:
  • trades(first: Int, after: String, last: Int, before: String): TradeConnection
  • # Arguments
  • # first:
  • # last:
  • # before:
  • # after:
  • transactions(first: Int, last: Int, before: String, after: String): TransactionConnection
  • # A list of offers, created by this account
  • #
  • # Arguments
  • # selling:
  • # buying:
  • # first:
  • # after:
  • # last:
  • # before:
  • offers(
  • selling: AssetID,
  • buying: AssetID,
  • first: Int,
  • after: String,
  • last: Int,
  • before: String
  • ): OfferConnection
  • }

link Require by