convexServerQuery
Calls a deployed Convex serverQuery function by path (e.g. db/shops:byDomain), injecting the
shared serverSecret the server-trust constructor requires. This is the seam's only read
transport; the identity-less pre-tenant/cross-tenant reads (Shop.findByDomain in middleware,
findAll, the auth adapter lookups) all flow through it.
Signature
function convexServerQuery(name: string, args: Record<string, unknown>): Promise<Result>;Parameters
| Name | Type | Description |
|---|---|---|
name | string | |
args | Record<string, unknown> |
Returns
The function's result.
Throws
Related
FeatureFlagService ReviewService ShopService FeatureFlagOption FeatureFlagRef ResolvedCartLineTokens ResolvedProductCardTokens ResolvedShopTheme
convexServerMutation
Calls a deployed Convex serverMutation function by path — the writeside companion of . Every seam write performs exactly ONE call through this transport (one Co
createConvexIdentityClient
Constructs a FRESH Convex client for identityauthenticated calls — the CONVEXCORE16 seam the admin app's editor bridge drives. Deliberately NOT the cached modul