wjarjoui
wjarjoui
CCConvex Community
Created by wjarjoui on 9/10/2024 in #support-community
Property 'eq' does not exist on type 'IndexRange'
No description
2 replies
CCConvex Community
Created by wjarjoui on 4/23/2024 in #support-community
`process.env.NODE_ENV` returning an unexpected value
I have my dev deployment configured to have NODE_ENV=wissam , however, when I run console.log(process.env.NODE_ENV) the result is development
6 replies
CCConvex Community
Created by wjarjoui on 3/11/2024 in #support-community
Airbyte cannot connect to convex source
No description
8 replies
CCConvex Community
Created by wjarjoui on 1/15/2024 in #support-community
Logs time showing out of order
No description
3 replies
CCConvex Community
Created by wjarjoui on 1/9/2024 in #support-community
retry fetch failed error
is there a simple flag to have ConvexHttpClient retry what seems to be a connection timeout error?
node:internal/deps/undici/undici:11730
Error.captureStackTrace(err, this);
^
TypeError: fetch failed
at Object.fetch (node:internal/deps/undici/undici:11730:11)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at runNextTicks (node:internal/process/task_queues:64:3)
at process.processImmediate (node:internal/timers:449:9)
at async ConvexHttpClient.action (/home/node/app/node_modules/convex/dist/cjs/browser/http_client.js:228:22) {
cause: ConnectTimeoutError: Connect Timeout Error
at onConnectTimeout (node:internal/deps/undici/undici:6869:28)
at node:internal/deps/undici/undici:6825:50
at Immediate._onImmediate (node:internal/deps/undici/undici:6857:13)
at process.processImmediate (node:internal/timers:478:21) {
code: 'UND_ERR_CONNECT_TIMEOUT'
}
}
node:internal/deps/undici/undici:11730
Error.captureStackTrace(err, this);
^
TypeError: fetch failed
at Object.fetch (node:internal/deps/undici/undici:11730:11)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at runNextTicks (node:internal/process/task_queues:64:3)
at process.processImmediate (node:internal/timers:449:9)
at async ConvexHttpClient.action (/home/node/app/node_modules/convex/dist/cjs/browser/http_client.js:228:22) {
cause: ConnectTimeoutError: Connect Timeout Error
at onConnectTimeout (node:internal/deps/undici/undici:6869:28)
at node:internal/deps/undici/undici:6825:50
at Immediate._onImmediate (node:internal/deps/undici/undici:6857:13)
at process.processImmediate (node:internal/timers:478:21) {
code: 'UND_ERR_CONNECT_TIMEOUT'
}
}
It seems some mutations were dropped when this error occurred. This came up while I was performance testing, I haven't seen in production.
10 replies
CCConvex Community
Created by wjarjoui on 1/5/2024 in #support-community
Skip schema validation for object arguments
I would like to use v.object() without passing a specific schema to validate
21 replies
CCConvex Community
Created by wjarjoui on 12/12/2023 in #support-community
Convex <> Airbyte <> Google sheets
I recently added this integration to sync data to google sheets. It was working fine with one issue: row updates were not pushed through. I then changed the airbyte connection to "full refresh & overwrite", which required a reset. After reset, only a portion of my convex table is being sync'ed. Out of 602 rows, only 129 are being sync'ed. I wrote Airbyte a ticket about this, but wanted to ask here as well if there is a known issue causing my data replication to be incomplete.
22 replies
CCConvex Community
Created by wjarjoui on 12/6/2023 in #support-community
I'm trying to use axios in convex
I'm trying to use axios in convex, but I'm getting:
Error: Uncaught AxiosError: Adapter xhr is not supported by the environment
at getAdapter [as getAdapter] (../../node_modules/axios/lib/adapters/adapters.js:39:10)
at dispatchRequest (../../node_modules/axios/lib/core/dispatchRequest.js:50:30)
at request [as request] (../../node_modules/axios/lib/core/Axios.js:146:6)
at httpMethod (../../node_modules/axios/lib/core/Axios.js:185:8)
at wrap (../../node_modules/axios/lib/helpers/bind.js:3:9)
at getAccessToken (../../convex/kyc/quadrata.ts:46:12)
at handler (../../convex/kyc/quadrata.ts:65:27)

at ConvexHttpClient.action (/home/node/app/node_modules/convex/dist/cjs/browser/http_client.js:253:15)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
at async WalletService.updateWalletDocumentsFromQuadrata (/home/node/app/dist/src/wallet/services/wallet.service.js:54:22)
at async WalletService.getWallet (/home/node/app/dist/src/wallet/services/wallet.service.js:153:20)
at async WalletService.getWalletInfo (/home/node/app/dist/src/wallet/services/wallet.service.js:44:28)
at async WalletController.getWalletInfo (/home/node/app/dist/src/wallet/wallet.controller.js:27:16)
at async /home/node/app/node_modules/@nestjs/core/router/router-execution-context.js:46:28
at async /home/node/app/node_modules/@nestjs/core/router/router-proxy.js:9:17
Error: Uncaught AxiosError: Adapter xhr is not supported by the environment
at getAdapter [as getAdapter] (../../node_modules/axios/lib/adapters/adapters.js:39:10)
at dispatchRequest (../../node_modules/axios/lib/core/dispatchRequest.js:50:30)
at request [as request] (../../node_modules/axios/lib/core/Axios.js:146:6)
at httpMethod (../../node_modules/axios/lib/core/Axios.js:185:8)
at wrap (../../node_modules/axios/lib/helpers/bind.js:3:9)
at getAccessToken (../../convex/kyc/quadrata.ts:46:12)
at handler (../../convex/kyc/quadrata.ts:65:27)

at ConvexHttpClient.action (/home/node/app/node_modules/convex/dist/cjs/browser/http_client.js:253:15)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
at async WalletService.updateWalletDocumentsFromQuadrata (/home/node/app/dist/src/wallet/services/wallet.service.js:54:22)
at async WalletService.getWallet (/home/node/app/dist/src/wallet/services/wallet.service.js:153:20)
at async WalletService.getWalletInfo (/home/node/app/dist/src/wallet/services/wallet.service.js:44:28)
at async WalletController.getWalletInfo (/home/node/app/dist/src/wallet/wallet.controller.js:27:16)
at async /home/node/app/node_modules/@nestjs/core/router/router-execution-context.js:46:28
at async /home/node/app/node_modules/@nestjs/core/router/router-proxy.js:9:17
34 replies
CCConvex Community
Created by wjarjoui on 10/31/2023 in #support-community
Failing preview deployments
I generated a new preview CONVEX_DEPLOY_KEY and added it to vercel, the preview deployments started failing with
✖ Error: Unable to run schema validation on https://fund-frontend.convex.cloud
✖ Error: Unable to run schema validation on https://fund-frontend.convex.cloud
Note that fund-frontend is the name of the project, I'd normally expect a convex-generated name as the sublevel domain there.
8 replies
CCConvex Community
Created by wjarjoui on 9/19/2023 in #support-community
Table cleared but count is non-zero
No description
3 replies
CCConvex Community
Created by wjarjoui on 9/5/2023 in #support-community
pressing cmd+f while in filter causes the finder to open in the small filter box
No description
7 replies