Var&
CCConvex Community
•Created by Var& on 9/25/2024 in #support-community
getting compile TS error after upgrading to v1.16.2
9 replies
CCConvex Community
•Created by Var& on 6/21/2024 in #support-community
Can two Convex projects under the same team talk to each other via backend(convex)?
Hi, I'm interested to learn if it's possible that tables from project A be mutated via project B from convex.
Here's the scenario I have and would appreciate to get some insights on how this is done generally.
I have the project A which is the main app with all the tables and stuff, and project B (which will be translated into smaller webapp) is for collecting requests that will mutate tables from project A via cornjobs/scheduling.
I'm thinking of doing it this way because of security, I don't want to expose my main app's creds to the smaller webapp.
Thanks, and apologizes for the weird question. 😄
5 replies
CCConvex Community
•Created by Var& on 2/27/2024 in #support-community
convex not compiling due to TS/Flow errors
Apologies if this not the right place to ask similar questions, but
npx convex dev
for me started to fail and I can't tell when and why. I tried to go back to older versions of dependencies but no luck.
Basically I'm getting a lot of TS/Flow errors when running the above command.
and with --typecheck=disable
flag I'm getting the following 2 errors
I researched and it seems like the Flow is failing the compile and I don't know how to address it.
Would appreciate a lot if someone can guid me on this.
Thanks.98 replies
CCConvex Community
•Created by Var& on 12/13/2023 in #support-community
fetch external resources while inside query
I'm trying to fetch additional data from external resource and merge it with query data to form the final data that gets sent back to client. For that I'm trying to use
internalAction
but seems like I can't figure out how to implement it? So I have the following questions:
Am I on the right track of trying to use internalAction
inside a query
?
if not, how can I achieve this?
take this as an example. I query a table and each record has an ID that the full data of that ID is in external resource. Now my challenge is to privately fetch the data for those IDs and stitch it with query result and send back to client ( btw the query result is small number maybe < 20 records)
Any help would be appreciated.8 replies
CCConvex Community
•Created by Var& on 11/30/2023 in #support-community
Get the count of the query without using collect()
Hi, I'm curious to learn if there is a way to get the total count of the particular query, not paginated, just regular query.
I can't find anything in the docs nor here in the conversations.
Thank you!
22 replies