Skip to main content

Nested sub-graphs

Fan out across domains in a single query.

Every Entity exposes nested sub-graphs for market data, technicals, news, regulatory, analyst, ownership, and more. The resolver fans out to the right upstream per field, batches requests, and returns everything in one response.

query {
entitiesByTickers(tickers: ["AAPL", "MSFT"]) {
name
market { quote { price changePercent volume marketCap } }
technicals { rsi macd { histogram } }
news(filter: { limit: 5 }) { title date link }
regulatory {
filings { type date url }
}
analyst { recommendation targetMean numberOfAnalysts }
}
}

Available sub-graphs

ParentSub-graphData
EntitymarketQuote, fundamentals, history
EntityriskOFAC sanctions, risk signals (signals accepts RiskSignalFilterInput)
EntityregulatorySanctions, SEC filings (filings accepts FilingsFilterInput)
EntitycorporateLegal name, officers, jurisdiction
EntitytechnicalsRSI, MACD, BB, EMA, SMA, ATR, VWMA, MFI
EntityderivativesFutures curve (FuturesCurveFilterInput), options chain (OptionsChainFilterInput) — crypto only
EntitynewsNews articles
EntitysentimentSocial sentiment
EntityfinancialsIncome statement, balance sheet, cash flow (each accepts ArrayFilterInput)

Array sub-graphs accept an optional filter argument — see Filtering & sorting for the full input reference. | Entity | executives | Key officers and directors | | Entity | institutionalHoldings | SEC 13F holdings | | Entity | ownership | Insider/institution %, short interest, float | | Entity | analyst | Analyst consensus | | Entity | topHolders | Top institutional holders from 13F |