OBJECT
Query
link GraphQL Schema definition
- type Query {
- # Get single asset
- #
- # Arguments
- # id: [Not documented]
- (: AssetID): Asset
- # Get list of assets. Note: native XLM asset isn't included here
- #
- # Arguments
- # code: [Not documented]
- # issuer: [Not documented]
- # first: [Not documented]
- # after: [Not documented]
- # last: [Not documented]
- # before: [Not documented]
- (
- : AssetCode,
- : AccountID,
- : Int,
- : String,
- : Int,
- : String
- ): AssetConnection
- # Get single account by the id
- #
- # Arguments
- # id: [Not documented]
- (: AccountID!): Account
- # Get a lists of accounts by the ids
- #
- # Arguments
- # ids: [Not documented]
- # inflationDestination: [Not documented]
- # homeDomain: [Not documented]
- # data: [Not documented]
- # first: [Not documented]
- # last: [Not documented]
- # after: [Not documented]
- # before: [Not documented]
- (
- : [AccountID!],
- : AccountID,
- : String,
- : DataInput,
- : Int,
- : Int,
- : String,
- : String
- ): AccountConnection
- # Get single ledger by its sequence number
- #
- # Arguments
- # seq: [Not documented]
- (: LedgerSeq!): Ledger!
- # Get list of ledgers by sequence numbers
- #
- # Arguments
- # seq: [Not documented]
- (: [LedgerSeq!]!): [Ledger]!
- # Get list of offers
- #
- # Arguments
- # selling: [Not documented]
- # buying: [Not documented]
- # first: [Not documented]
- # after: [Not documented]
- # last: [Not documented]
- # before: [Not documented]
- (
- : AssetCode!,
- : AssetCode!,
- : Int,
- : String,
- : Int,
- : String
- ): OfferConnection
- # Get current best bid/ask offer for the given pair of assets
- #
- # Arguments
- # selling: [Not documented]
- # buying: [Not documented]
- (: AssetID!, : AssetID!): Tick
- # Get single transaction by id
- #
- # Arguments
- # id: [Not documented]
- (: TransactionHash!): Transaction
- # Get list of transactions
- #
- # Arguments
- # first: [Not documented]
- # after: [Not documented]
- # last: [Not documented]
- # before: [Not documented]
- (: Int, : String, : Int, : String): TransactionConnection
- # Get list of operations
- #
- # Arguments
- # type: [Not documented]
- # first: [Not documented]
- # after: [Not documented]
- # last: [Not documented]
- # before: [Not documented]
- (
- : [OperationType],
- : Int,
- : String,
- : Int,
- : String
- ): OperationConnection
- # Get single operation by its id
- #
- # Arguments
- # id: [Not documented]
- (: String): Operation
- # Get order book details
- #
- # Arguments
- # selling: [Not documented]
- # buying: [Not documented]
- # limit: [Not documented]
- (: AssetID!, : AssetID!, : Int): OrderBook
- # Look up for appropriate payment paths
- #
- # Arguments
- # sourceAccountID: The sender’s account id. Any returned path
- # must use a source that the sender can hold
- # destinationAsset: [Not documented]
- # destinationAmount: [Not documented]
- (
- : AccountID!,
- : AssetID!,
- : String!
- ): [PaymentPath!]
- # Get list of trades
- #
- # Arguments
- # assetSold: [Not documented]
- # assetBought: [Not documented]
- # offer: [Not documented]
- # first: [Not documented]
- # after: [Not documented]
- # last: [Not documented]
- # before: [Not documented]
- (
- : AssetID,
- : AssetID,
- : String,
- : Int,
- : String,
- : Int,
- : String
- ): TradeConnection!
- }
link Require by
This element is not required by anyone