SearchResult
A query to the search endpoint returns a SearchResult object consisting of several lists of relevant results.
type SearchResult {
query: String!
assets: [Asset]
collections: [Collection]
listings: [Listing]
games: [Game]
wallets: [Wallet]
}
Fields
SearchResult.assets [Asset]
SearchResult.assets [Asset]A list of Asset objects related to the query.
SearchResult.collection [Collection]
SearchResult.collection [Collection]A list of Collection objects related to the query.
SearchResult.game [Game]
SearchResult.game [Game]A list of Game objects related to the query.
SearchResult.listings [Listing]
SearchResult.listings [Listing]A list of Listing objects related to the query.
SearchResult.query String!
SearchResult.query String!The sent query string.
SearchResult.wallets [Wallet]
SearchResult.wallets [Wallet]A list of Wallet objects related to the query.
