for query:
query {
stockData: StockData
}
type StockData {
price: PriceData
dividend: DividendData
fundamental: FundamentalData
}
is it possible to know what fields from type “StockData” the client is trying to request.
for example price + dividend or price + fundamental or all the three fields.