diff --git a/www/src/pages/en/reference/typescript.mdx b/www/src/pages/en/reference/typescript.mdx index a803df0..31dee8f 100644 --- a/www/src/pages/en/reference/typescript.mdx +++ b/www/src/pages/en/reference/typescript.mdx @@ -51,7 +51,7 @@ The `QueryResponse` type is the same type returned by an ElectroDB Query. ```typescript export type QueryResponse> = { - data: EntityItem; + data: EntityItem[]; cursor: string | null; }; ```