ashuvssut (ashu)
ashuvssut (ashu)
CCConvex Community
Created by ashuvssut (ashu) on 9/30/2023 in #support-community
Vector Index and Index cannot have same name in a table
No description
5 replies
CCConvex Community
Created by ashuvssut (ashu) on 9/27/2023 in #support-community
Cannot resolve built-in Node's "crypto" library
apps/convex/utils.ts:5:19:
5 │ import crypto from "crypto";
╵ ~~~~~~~~

The package "crypto" wasn't found on the file system but is built into node. Are you trying to
bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
apps/convex/utils.ts:5:19:
5 │ import crypto from "crypto";
╵ ~~~~~~~~

The package "crypto" wasn't found on the file system but is built into node. Are you trying to
bundle for node? You can use "platform: 'node'" to do that, which will remove this error.
I have put "use node" directive in utils.ts. still no effect. What am i doing wrong here?
6 replies
CCConvex Community
Created by ashuvssut (ashu) on 9/24/2023 in #support-community
a field to know the invoker of the query/mutation's in ctx argument
I want a field in the ctx argument of the query / mutation to know about the invoker of the query/mutation More specifically, I just need to know whether the invoker is the client or an internal function (internalQuery, internalMutation or internalAction) MY USE CASE I want to skip the auth check if the invoker is an internal function
3 replies
CCConvex Community
Created by ashuvssut (ashu) on 9/23/2023 in #support-community
Invoking actions whenever a document is created/edit in a table
Hi, is it possible to invoke actions whenever a document is created/edit in a Table? Or do have to manually invoke them through scheduler from every query or mutation that add/change that Table's document
2 replies
CCConvex Community
Created by ashuvssut (ashu) on 9/23/2023 in #support-community
Get server time in a query/mutation for ‘updatedAt"
Hi, is there any server function to get the server time in my query/mutation I want to create a updatedAt column in a Table
2 replies
CCConvex Community
Created by ashuvssut (ashu) on 9/18/2023 in #support-community
how to call a function (mutation) from another function (mutation)?
question in the title
8 replies