Alvi
Alvi
CCConvex Community
Created by Alvi on 3/24/2025 in #support-community
paginated query with status
i want to use paginated query with status so it doesn't throw on backend error
6 replies
CCConvex Community
Created by Alvi on 3/19/2025 in #support-community
Convex backend versioning
i am using convex as a backend for a mobile app, and if i update the production convex backend and the mobile is not udpated by users will cause the mobile application to break
2 replies
CCConvex Community
Created by Alvi on 3/16/2025 in #support-community
Convex image compression
Does convex provide any plugin to compress images
8 replies
CCConvex Community
Created by Alvi on 3/15/2025 in #support-community
stable query with status
i want to get if a stable query isPending but useStableQuery only returns the query data
5 replies
CCConvex Community
Created by Alvi on 3/12/2025 in #support-community
shouldLinkViaEmail not working as intended
is have set shouldLinkViaEmail to false, but still the sign up accounts are linked by email. here is the code:
const account = await createAccount<DataModel>(ctx, {
provider,
account: { id: email, secret },
profile: {
...fields,
phoneVerificationTime: Date.now(),
},
shouldLinkViaEmail: false,
shouldLinkViaPhone: true,
});
const account = await createAccount<DataModel>(ctx, {
provider,
account: { id: email, secret },
profile: {
...fields,
phoneVerificationTime: Date.now(),
},
shouldLinkViaEmail: false,
shouldLinkViaPhone: true,
});
8 replies
CCConvex Community
Created by Alvi on 2/28/2025 in #support-community
how to create tuples in convex
export const weekDayValidator = v.array( v.literal(WeekDay.SUNDAY), v.literal(WeekDay.MONDAY), v.literal(WeekDay.TUESDAY), v.literal(WeekDay.WEDNESDAY), v.literal(WeekDay.THURSDAY), v.literal(WeekDay.FRIDAY), v.literal(WeekDay.SATURDAY), ); i want to achieve this , but v.array only accepts 1 argument
6 replies
CCConvex Community
Created by Alvi on 2/27/2025 in #support-community
How to get user's locale(selected language)
i want to localize push notifications, but in order to do that i need the locale of user
3 replies