Skip to main content

Interface: GenericQueryCtx<DataModel>

server.GenericQueryCtx

A set of services for use within Convex query functions.

The query context is passed as the first argument to any Convex query function run on the server.

This differs from the MutationCtx because all of the services are read-only.

Type parameters

NameType
DataModelextends GenericDataModel

Properties

db

db: GenericDatabaseReader<DataModel>

A utility for reading data in the database.

Defined in

server/registration.ts:75


auth

auth: Auth

Information about the currently authenticated user.

Defined in

server/registration.ts:80


storage

storage: StorageReader

A utility for reading files in storage.

Defined in

server/registration.ts:85