Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix incorrectly documented QueryResponse type in typescript.mdx
As per the index.d.ts file and in general how query responses are shaped the `QueryResponse` type is correctly typed as: ``` export type QueryResponse<E extends Entity<any, any, any, any>> = { data: EntityItem<E>[]; cursor: string | null; }; ``` though in the docs reference it was typed as: ``` export type QueryResponse<E extends Entity<any, any, any, any>> = { data: EntityItem<E>; cursor: string | null; }; ``` this kinda confused me and hence this docs correction.
- Loading branch information