/** * GraphQL Query Strings for Subgraph * * Delegates to the Rust WASM core which holds the canonical query strings. * This ensures TypeScript and Rust clients always use identical queries. */ /** Search: find facts matching any of the given blind index trapdoors. */ export declare const SEARCH_BY_BLIND_INDEX: string; /** Broadened search: fetch recent active facts by owner without trapdoor filtering. */ export declare const BROADENED_SEARCH: string; /** Fetch all active facts for an owner (bulk download / recovery) */ export declare const FETCH_ALL_FACTS: string; /** Delta sync: facts since a given block number */ export declare const DELTA_SYNC_FACTS = "\n query DeltaSyncFacts($owner: Bytes!, $sinceBlock: BigInt!, $first: Int!, $skip: Int!) {\n facts(\n where: { owner: $owner, blockNumber_gt: $sinceBlock }\n orderBy: blockNumber\n orderDirection: asc\n first: $first\n skip: $skip\n ) {\n id\n encryptedBlob\n encryptedEmbedding\n decayScore\n isActive\n contentFp\n sequenceId\n blockNumber\n timestamp\n createdAt\n version\n }\n }\n"; /** Count facts for an owner (for dynamic pool sizing) */ export declare const COUNT_FACTS: string; //# sourceMappingURL=queries.d.ts.map