Fix annual financial selector and QCOM standardization
This commit is contained in:
@@ -582,7 +582,7 @@ export async function listTaxonomyFactsByTicker(input: {
|
||||
cursor?: string | null;
|
||||
limit?: number;
|
||||
}) {
|
||||
const safeLimit = Math.min(Math.max(Math.trunc(input.limit ?? 500), 1), 2000);
|
||||
const safeLimit = Math.min(Math.max(Math.trunc(input.limit ?? 500), 1), 10000);
|
||||
const cursorId = input.cursor ? Number.parseInt(input.cursor, 10) : null;
|
||||
const conditions = [eq(filingTaxonomySnapshot.ticker, input.ticker.trim().toUpperCase())];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user