Convex Community

CC

Convex Community

Join the community to ask questions about Convex Community and get answers from other members.

Join

support-community

show-and-tell

general

self-hosted

announcements

Google Auth Consent Screen showing HTTP Actions URL

Hi! I have followed the setup in here to make the OAuth for Google not show the HTTP Actions URL, but unfortunately it keeps showing the HTTP Actions URL. May I ask how to address this further, and whether or not I should be concerned with this as a potential security issue? My database is still pretty new so I can just port over to a new database. Thank you!...
No description

Convex Auth React and React Native monorepo

Hello, how can i use convex auth with google OAuth on both my react and react native apps. I set up everything and its working, just a bit confused about SITE_URL thing

How to query while inside a function?

I have a handleSubmit function called by a form. I have a query built that works, but I don’t know how to access it while I’m inside of a function. I know the query works because I can hardcode and use a stand alone useQuery but I can’t figure out the syntax/command to use while inside of a function to call it with an arg. I’m using TanStack. Clarification: the query does a check for some business logic which is why I’m doing it inside of the handleSubmit. The rest of the handleSubmit depends on the result of this initial query. Do I need to do this more sequentially instead of all inside one function? Get the form element I need and make it a const then pass that to a query, then call that from inside the handle form?...

Returning response from runQuery in a query breaks typescript

As seen in the included images: in the first image I return data from the runQuery and now the entire function and everything in it resolves to any. When I remove the return (or change it to something like return 1) the types work again. I've had this before with actions as well. I think the issue is with runQuery because when I return data I get from ctx.db it works fine. I guess this is a bug? I can't find anything in the docs that state I shouldn't return data from runQuery. Or is there something else that I might be doing wrong?...
No description

Weird type error when searching by Index

I get this error when trying to filter by an index, i created it in my schema too. Argument of type 'string' is not assignable to parameter of type 'never'.ts(2345) I ahve attached image of the query....
No description

This Convex deployment does not have HTTP actions enabled.

why is my convex webhook returning this error message? I can't find anything on how to enable http actions i just followed this guide https://docs.convex.dev/auth/database-auth#webhook-endpoint-implementation but on Clerk all calls are failing...
No description

Authentication not updating

I have an incredibly simple auth setup following the guide here https://labs.convex.dev/auth/api_reference/react. I want to use the <Authenticated> <Unauthenticated> and <AuthLoading> components to structure my code, but it seems that the <Authenticated> will never trigger. I will either be in a state where I am unauthenticated or loading....

How to properly authenticate convex functions called via fetchAction and fetchMutation.

So in a user context I have found that you can pass the users token to object on the third arguement of a fetch action call as below ``` const mythings = await fetchQuery( api.yadiyadiyada.getSomeX, {...

dashboard not loading in firefox

Hi, I tried disabling any adblocker extensions in firefox but still I am unable to open the convex dashboard in firefox. the console shows the following error Firefox can’t establish a connection to the server at wss://outgoing-panther-899.convex.cloud/api/1.18.2/sync. I'm now using google chrome without issues, probably something related to browser compatibility, firefox hasn't been in it's prime lately...

PRODUCTION ERROR

My production environment has been down for a long time (at least 40 minutes). The dashboard doesn't work. The websocket doesn't connect from the application site. The Discord community is unresponsive. The website doesn't reflect this production outage. This is alarming to me. Paying customer....

Could not find public function

All of a sudden I'm getting: `` Ok([Request ID: 2333d44835d22263] Server Error Could not find public function for 'users:getUserById'. Did you forget to run npx convex dev or npx convex deploy`?...
No description

Reporting Phishing

Hi team, what's the best method to report phishing URLs on Convex? Happy to move to a DM or group to discuss more widely. Thanks, Luke from Netcraft....

When to query data in a framework's loader vs a route component? Or imported component?

Coming from a Remix/RR7 background where basically all data fetching was done in the loader. Now I'm making headway in TanStack Start/Router and Convex and its slowly starting to click. Convex docs for TanStack always show doing a query in the route component, usually highlighting the reactivity for changes in the database which is great. My questions are, under what circumstances would one do the query in a loader/beforeLoad and when would one do it in the route component? When reactivity is needed is it only achieved in the route component? Can reactivity happen from an imported component that has a useQuery in its export? If one doesn't need reactivity is it better to query in the loader? Some of this has to do with the code splitting that TanStack does, keeping code securely processed on the server vs potentially exposed on the client. How that all works is one of the many ways my ignorance starts to show. Like anyone else, I want to keep safe the data that needs keeping safe, and also have the app do the work where it should be doing it (loader/component/route) and not mistakenly trying to make it do it one way when it only works the other....

Preferred method for saving formatted text in string fields?

It's still early days for me in Convex and my app. For now I need to display a block of text made up of a number of paragraphs. What is the secret sauce to copy/paste into a string field and maintain paragraphs? Eventually I will be building something more sophisticated with TipTap or similar. For now, I'd like this block to have some paragraph breaks. I tried \r and \n thinking it might interpret those but it doesn't seem to.

Execution out of memory on httpAction

Getting the error Javascript execution out of memory on httpAction. I'm doing some image processing, any way to up the execution memory limits?
No description

TypeScript not Inferring Query `handler` Type Correctly

Hey everyone, I'm trying to "JOIN" some data in my query in order to include the creator directly in my response. However, it seems like TypeScript isn't able to properly infer the handler's return type even with excessive type hints:```ts export const find = query({ args: { paginationOpts: paginationOptsValidator, filter: v.optional(...

How to get request.ip inside a convex server function?

The title: This would be really nice
const {ip, userAgent} = ctx.request
const {ip, userAgent} = ctx.request
...

best way to build ai chat with infinite memory with vector search ?

Hi, need some advice here. i just want a simple infinite memory group chat, no file/image or pdf upload needed. there'll be tables like 1. sessions...