Starlord
CCConvex Community
•Created by Starlord on 2/9/2025 in #support-community
Index query with "OR" statement
hello,
is there a way to optimize this query using index because "or" statement is not possible in index? this way full table data is fetched and only filtered afterwards.
7 replies
CCConvex Community
•Created by Starlord on 1/25/2025 in #support-community
Join tables query / paginate
An important limitation in Convex that affects how we need to structure queries, especially for paginated results with joins. Let me explain the problem and show hacky workarounds:
The Problem
In my current code, i am trying to:
1. Paginate products
2. Then fetch variations for those products
3. Then filter based on those variations (colors, sizes)
This approach is problematic because:
1. The pagination happens BEFORE the joins and filters on variations
2. This means I might get fewer results than requested after filtering
3. I can't do true SQL-like JOINs in a single query
For example, if I request 10 products:
- I might get 10 products from the initial pagination
- After filtering by variations, I might end up with only 3-4 products that actually match
- The user sees fewer items than expected
Possible Solutions
1. Denormalization Approach
2. Materialized Views Approach
3. Batch Loading Approach
74 replies
CCConvex Community
•Created by Starlord on 1/16/2025 in #support-community
Not authenticated after successful sign in request

8 replies
CCConvex Community
•Created by Starlord on 1/5/2025 in #support-community
Suboptimal Caching Behavior for Public Queries
Current Behavior
- Query results are only cached per user session
- Cache is not shared between different users or sessions
- Even public queries with stable parameters require fresh DB hits for each new user/session
- Example: Product listing queries with same filters/pagination hit DB for each new visitor
Expected Behavior
- Public queries with identical parameters should be cached across users/sessions
- Queries that don't depend on user-specific data (like
ctx.auth.getUserId()
) should leverage shared cache
- Cache invalidation should only occur when underlying data changes
Impact
- Increased database bandwidth consumption
- Higher latency for common queries
- Unnecessary load on database for identical queries
- Cost implications for high-traffic applications74 replies
CCConvex Community
•Created by Starlord on 12/20/2024 in #support-community
Debug Production
Hello, I have run into a situation where a user has a problem / bug in production environment. Is there a way to copy production environment into development?
what would be the best way to login as this user and to simulate his connection?
12 replies
CCConvex Community
•Created by Starlord on 12/18/2024 in #support-community
pagination query 2 server requests on start
hello. please explain why paginated query is executing 2 times on first execution even it is exhausted?
it think the problem is with convex source code:
First execution: Gets the initial page of results
Second execution: Checks if there are more items after the current page
its doing second request even if first is already 'Exhausted'
12 replies
CCConvex Community
•Created by Starlord on 12/18/2024 in #support-community
Force logout user / invalidate JWT token
Hello, is it possible to force logout user / invalidate JWT Token on the backend side to make player need to login again?
35 replies
CCConvex Community
•Created by Starlord on 12/13/2024 in #support-community
mutation doesnt rollback query state on failure

22 replies