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
| Parent | Sub-graph | Data |
|---|---|---|
Entity | market | Quote, fundamentals, history |
Entity | risk | OFAC sanctions, risk signals (signals accepts RiskSignalFilterInput) |
Entity | regulatory | Sanctions, SEC filings (filings accepts FilingsFilterInput) |
Entity | corporate | Legal name, officers, jurisdiction |
Entity | technicals | RSI, MACD, BB, EMA, SMA, ATR, VWMA, MFI |
Entity | derivatives | Futures curve (FuturesCurveFilterInput), options chain (OptionsChainFilterInput) — crypto only |
Entity | news | News articles |
Entity | sentiment | Social sentiment |
Entity | financials | Income 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 |