Add research workspace and graphing flows
This commit is contained in:
@@ -13,6 +13,18 @@ export const queryKeys = {
|
||||
) => ['financials-v3', ticker, surfaceKind, cadence, includeDimensions ? 'dims' : 'no-dims', includeFacts ? 'facts' : 'rows', factsCursor ?? '', factsLimit, cursor ?? '', limit] as const,
|
||||
filings: (ticker: string | null, limit: number) => ['filings', ticker ?? '', limit] as const,
|
||||
report: (accessionNumber: string) => ['report', accessionNumber] as const,
|
||||
researchWorkspace: (ticker: string) => ['research', 'workspace', ticker] as const,
|
||||
researchLibrary: (
|
||||
ticker: string,
|
||||
q: string,
|
||||
kind: string,
|
||||
tag: string,
|
||||
source: string,
|
||||
linkedToMemo: string,
|
||||
limit: number
|
||||
) => ['research', 'library', ticker, q, kind, tag, source, linkedToMemo, limit] as const,
|
||||
researchMemo: (ticker: string) => ['research', 'memo', ticker] as const,
|
||||
researchPacket: (ticker: string) => ['research', 'packet', ticker] as const,
|
||||
watchlist: () => ['watchlist'] as const,
|
||||
researchJournal: (ticker: string) => ['research', 'journal', ticker] as const,
|
||||
holdings: () => ['portfolio', 'holdings'] as const,
|
||||
|
||||
Reference in New Issue
Block a user