OBJECT

Subscription

link GraphQL Schema definition

  • type Subscription {
  • # Subscribe on
  • # [trustlines](https://www.stellar.org/developers/guides/concepts/assets.html#trustlines)
  • # updates
  • #
  • # Arguments
  • # args: [Not documented]
  • balance(args: EventInput): BalanceSubscriptionPayload
  • # Subscribe on [data
  • # entries](https://www.stellar.org/developers/guides/concepts/list-of-operations.html#manage-data)
  • # updates
  • #
  • # Arguments
  • # args: [Not documented]
  • dataEntry(args: EventInput): DataEntrySubscriptionPayload
  • # Subscribe on account updates
  • #
  • # Arguments
  • # args: [Not documented]
  • account(args: EventInput): AccountSubscriptionPayload
  • # Subscribe to the new ledger creation event
  • ledgerCreated: Ledger
  • # Subscribe on offers updates
  • #
  • # Arguments
  • # args: [Not documented]
  • offer(args: OfferEventInput): OfferSubscriptionPayload
  • # Subscribe on best bid/ask updates
  • #
  • # Arguments
  • # selling: [Not documented]
  • # buying: [Not documented]
  • tick(selling: AssetID, buying: AssetID): Tick
  • # Subscribe to new transactions on the network
  • #
  • # Arguments
  • # id: [Not documented]
  • transactions(id: TransactionHash): Transaction!
  • # Subscribe to new operations on the network
  • #
  • # Arguments
  • # txSource: [Not documented]
  • # opSource: [Not documented]
  • # type: [Not documented]
  • # destination: [Not documented]
  • # asset: [Not documented]
  • operations(
  • txSource: [AccountID],
  • opSource: [AccountID],
  • type: [OperationType],
  • destination: [AccountID],
  • asset: [AssetID]
  • ): Operation!
  • }

link Require by

This element is not required by anyone