Skip to content

Latest commit

 

History

History
66 lines (38 loc) · 861 Bytes

File metadata and controls

66 lines (38 loc) · 861 Bytes
  • Home
  • API reference
  • Convex API
  • convex/browser
  • Query

On this page

Interface: Query<F>

browser.Query

Type parameters​

Name Type


F extends (...args: any[]) => Promise<any>

Callable​

Query​

Query(...args): Promise<Awaited<ReturnType<F>>>

Execute the query on the server, returning a Promise of the return value.

Parameters​

Name Type Description


...args Parameters<F> Arguments for the query.

Returns​

Promise<Awaited<ReturnType<F>>>

The result of the query.