OBJECT
Query
link GraphQL Schema definition
- type Query {
- # Query to retrieve list of accounts
- : [Account]
- # Query to retrieve a single account
- #
- # Arguments
- # public_key: Public key that uniquely identifies the account
- (: String!): Account
- # Query to retrieve account balances for a single account
- #
- # Arguments
- # public_key: Public key that uniquely identifies the account
- (: String!): [Balance]
- # Query to retrieve list of assets
- : [Asset]
- # Query to retrieve account history for a single account
- #
- # Arguments
- # public_key: Public key that uniquely identifies the account
- # type: Filter for retrieving specific history types
- (: String!, : String): [History]
- # Query to retrieve active offers for a single account
- #
- # Arguments
- # public_key: Public key that uniquely identifies the account
- (: String!): [Offer]
- # Query to retrieve account history for a single account
- #
- # Arguments
- # sell_asset_code: Code of Asset being offered for sale
- # sell_asset_issuer: Issuer of Asset being offered for sale
- # buy_asset_code: Type of Asset being bought
- # buy_asset_issuer: Issuer of Asset being bought
- (
- : String!,
- : String,
- : String!,
- : String
- ): Orderbook
- # Query to retrieve list of in process transactions for an account
- #
- # Arguments
- # public_key: Public key that uniquely identifies the account
- (: String!): [Transaction]
- # Query to retrieve list of in transactions to sign for an account
- #
- # Arguments
- # public_key: Public key that uniquely identifies the account
- (: String!): [Transaction]
- # Query to retrieve details about a given fee
- #
- # Arguments
- # type: Unique identifier to retrieve the Fee
- (: String!): Fee
- }
link Require by
This element is not required by anyone