Wayne
Wayne
CCConvex Community
Created by Web Dev Cody on 9/21/2024 in #support-community
Delete all files
17 replies
CCConvex Community
Created by M Zeeshan on 9/16/2024 in #support-community
Clerk auth session in Convex functions
@ballingt thank you!
49 replies
CCConvex Community
Created by M Zeeshan on 9/16/2024 in #support-community
Clerk auth session in Convex functions
Hi have you tried the #ask-ai channel? Also a lot of Developers using Convex are having great success with Cursor.
49 replies
CCConvex Community
Created by shea on 9/1/2024 in #support-community
IdTokenExpired on using convexAuthNextjsToken in production
Hi everyone, please remember our Guidelines and Code of Conduct, and we're a small team. If you're a Convex Pro customer, it's best to email via the Convex Dashboard for email support. All other support from the community is provided on a volunteer basis.
95 replies
CCConvex Community
Created by swagbot300 on 9/15/2024 in #support-community
Working on hackathon project and getting rate limited
1 cent, nope, 2cents maybe
6 replies
CCConvex Community
Created by swagbot300 on 9/15/2024 in #support-community
Working on hackathon project and getting rate limited
@swagbot300 do you have the code for Convex pro? Check the Convex sponsor channel for the code
6 replies
CCConvex Community
Created by Mac on 9/15/2024 in #support-community
python-convex db query
@Mac hi try this. To query the Convex database from Python and retrieve a specific row and column based on a primary key (pk), you can follow these steps: 1. Define a Query Function in Convex: First, you’ll need to create a query function within your Convex application that can fetch data based on the pk. This function will be exposed via Convex’s HTTP API. 2. Call the Function from Python: Use Python’s requests library to make an HTTP POST request to the Convex function you defined, passing the necessary parameters. Below is a step-by-step guide to achieve this: Step 1: Define a Query Function in Convex Create a new query function in your Convex functions directory (e.g., convex/functions/get_row_by_pk.js): // convex/functions/get_row_by_pk.js import { query } from "./_generated/server"; export default query(async ({ db }, { tableName, pk, columnName }) => { // Fetch the item with the specified primary key const item = await db.table(tableName).get(pk); if (!item) { throw new Error("Item not found"); } // Return the specific column value if columnName is provided if (columnName) { return { [columnName]: item[columnName] }; } // Return the entire item if columnName is not provided return item; }); Parameters: • tableName: The name of the table you want to query. • pk: The primary key value of the row you want to retrieve. • columnName (optional): The specific column you want to retrieve from the row. Step 2: Expose the Function via Convex’s HTTP API Ensure that your Convex deployment is set up to allow HTTP function calls. Convex functions are accessible via HTTP endpoints in the format: POST https://<your-convex-deployment>.convex.cloud/api/functions/<functionName> Step 3: Call the Convex Function from Python Use Python’s requests library to make a POST request to your Convex function: import requests # Replace with your Convex deployment URL CONVEX_URL = 'https://your-convex-deployment.convex.cloud' # The name of the function you defined in Convex FUNCTION_NAME = 'get_row_by_pk' # Parameters to pass to the Convex function params = { 'tableName': 'your_table_name', 'pk': 'your_primary_key_value', 'columnName': 'your_column_name' # Optional } # Make a POST request to the Convex function response = requests.post( f'{CONVEX_URL}/api/functions/{FUNCTION_NAME}', json=params ) # Handle the response if response.status_code == 200: data = response.json() print("Retrieved Data:", data) else: print(f'Error {response.status_code}: {response.text}')
2 replies
CCConvex Community
Created by Matt Luo on 5/28/2024 in #support-community
Bug: Chrome suspects Convex's Typeform implementation
@Matt Luo the link has been updated. Thanks
5 replies
CCConvex Community
Created by Matt Luo on 5/28/2024 in #support-community
Bug: Chrome suspects Convex's Typeform implementation
Thanks @Matt Luo I'll look into it.
5 replies
CCConvex Community
Created by Rodrigo-R on 5/28/2024 in #support-community
Entering coupon codes after enrolling in pro plan
@Rodrigo-R Hi we'll follow-up via DM. Thanks! Ref Startup Program.
3 replies
CCConvex Community
Created by Alexandra_Samo on 3/19/2024 in #support-community
AI chatbot for user support
Hi @Alexandra_Samo what parts of Convex are you using for the project?
14 replies
CCConvex Community
Created by yoyoyo on 2/24/2024 in #support-community
Hackathon Prize
Answered via DM - Yes, each company well handle the prize money for DevWeek hackathon.
12 replies
CCConvex Community
Created by yoyoyo on 2/24/2024 in #support-community
Hackathon Prize
Hi, yes I was at Devweek and will be following up with all the winning teams early next week
12 replies
CCConvex Community
Created by yoyoyo on 2/24/2024 in #support-community
Hackathon Prize
hi @yoyoyo I just sent you a DM about the code.
12 replies
CCConvex Community
Created by viv on 2/17/2024 in #support-community
Sharing Convex Project
Hi @viv yes both of you can access. Check out this previous support thread https://discord.com/channels/1019350475847499849/1141788525746982972 and our docs on added members to your team https://docs.convex.dev/dashboard/teams
4 replies
CCConvex Community
Created by Vinny on 10/28/2023 in #support-community
Consistently getting this error and not sure where to put platform: node
@Vinny thanks for coming by the booth for help. We'll be here throughout the evening. Feel free to come back if you have any more questions.
10 replies
CCConvex Community
Created by Vinny on 10/28/2023 in #support-community
Consistently getting this error and not sure where to put platform: node
@Vinny Hi, do you have a min, to stop by our booth to chat about your project at Cal Hacks?
10 replies