nextjs middleware
Calling `ctx.runQuery` from `query`
ctx.runQuery/runMutation
was only possible from actions, and that calling a query from within a query was not possible, but that regular TS helper functions should be employed (e.g. as @erquhart mentions here https://discord.com/channels/1019350475847499849/1216003221445939330/1216033039247867984).
I just found out that it is indeed possible by just using ctx.runQuery
. That comes with this warning/info: often you can call the query's function directly? Is this what you mean/propose?:
...Acceptable circular reference counts?
Force logout user / invalidate JWT token
Making a Open Source Convex app, for those who dont want to write any code, and just want a website.
Accessing client IP address in a query/mutation
httpAction
required for this use case?
```TypeScript
const registerClient = mutation({
args: { userAgent: v.string() },...local dev environment?
Database Structure Help
convex.cloud requests blocked by malwarebytes
Getting the user id
const userId = await auth.getUserId(ctx)
const userId = await auth.getUserId(ctx)
const userId = await getAuthUserId(ctx);
const userId = await getAuthUserId(ctx);
What to put for auth.config.ts domain?
https://auth.privy.io/api/v1/apps/<app_id>/jwks.json
, what should be the value of domain
in auth.config.ts
?debouncing
About receiving useQuery events
Convex Auth + Google + Custom Domain
.site
domain is being used even though I have a custom HTTP Actions domain configured in both Convex and Google Auth Platform.
The Convex URL shows up in the Google sign-in page, which makes it look untrustworthy to my customer (see screenshot) -- I need this page to display my custom subdomain instead.
I tried editing the domain
value in my auth.config.ts
, but this doesn't help -- it seems process.env.CONVEX_SITE_URL
is hardcoded in several places....Clerk integration call functions infinitely - need help
expo@52.0.17
, convex@1.17.3
and @clerk/clerk-expo@2.4.2
, currently working in a turborepo project with yarn
I have configured the clerk integration according to the documentation, my _layout.tsx
:
```typescript
import { ClerkProvider, useAuth, ClerkLoaded } from "@clerk/clerk-expo";
import { ConvexProviderWithClerk } from "convex/react-clerk";...convex.json schema?
convex.json
config file by chance. Does this exist? Couldn't find anything on the Convex search.I currently run a cron job every 20 sec but its using bandwidth a lot how can i reduce the bandwidth
`too many open files` when running `expo start` in Convex RN template
.paginate combined with .withIndex is causing an error
Convex Auth + Tamagui (Monorepo)
signIn
Im getting http://localhost:3000/api/auth
404 Not found error. What am I doing wrong?