a57d484496
* feat: add new generator with config * feat: split off gql queries to separate files for the new generator * fix: delete dummy schema * feat: add generated queries with new codegen * fix: regenerate from scratch and remove duplicates * fix: libs and app gen folders * fix: remove more duplicate queries * fix: add generated files to be ignored by the formatter * fix: format * fix: generated imports * fix: lint * fix: accounts export * fix: more imports * fix: add type alias for new type system and regenerate * fix: format * fix: delete leftover file from merge
60 lines
1.0 KiB
GraphQL
60 lines
1.0 KiB
GraphQL
query Market($marketId: ID!, $interval: Interval!, $since: String!) {
|
|
market(id: $marketId) {
|
|
id
|
|
name
|
|
tradingMode
|
|
state
|
|
decimalPlaces
|
|
positionDecimalPlaces
|
|
data {
|
|
market {
|
|
id
|
|
}
|
|
auctionStart
|
|
auctionEnd
|
|
markPrice
|
|
indicativeVolume
|
|
indicativePrice
|
|
suppliedStake
|
|
targetStake
|
|
bestBidVolume
|
|
bestOfferVolume
|
|
bestStaticBidVolume
|
|
bestStaticOfferVolume
|
|
trigger
|
|
}
|
|
tradableInstrument {
|
|
instrument {
|
|
id
|
|
name
|
|
code
|
|
metadata {
|
|
tags
|
|
}
|
|
product {
|
|
... on Future {
|
|
oracleSpecForTradingTermination {
|
|
id
|
|
}
|
|
quoteName
|
|
settlementAsset {
|
|
id
|
|
symbol
|
|
name
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
marketTimestamps {
|
|
open
|
|
close
|
|
}
|
|
candles(interval: $interval, since: $since) {
|
|
open
|
|
close
|
|
volume
|
|
}
|
|
}
|
|
}
|