query GetOrderbook($marketName: MarketName!){
getOrderBook(marketName: $marketName){
asks{
amount{
amount, currency
},
price {
amount
}
},
bids{
amount{
amount, currency
},
price {
amount
}
},
lastUpdateId,
updateId,
market{
name
}
}
}