u007
Explore posts from serversPPrisma
•Created by u007 on 9/18/2024 in #help-and-questions
inconsistant use of id field and relation create
why is this createMany in relation somehow is using siteId instead of site: connect?
```const oldChat = await prisma.chat.create({data: {
token: generateRandomString(),
module: {
connect: {
id: moduleId
},
},
chatProfile: {
connect: {
id: chatProfileId
}
},
Message: {
createMany: {
data: Array(40).fill({
role: 'USER', msgContent: 'Test message',
siteId: site.id,
// site: {
// connect: {
// id: site.id,
// }
// }
}),
},
},
}})
2 replies
PPrisma
•Created by u007 on 8/8/2024 in #help-and-questions
Type instantiation is excessively deep and possibly infinite
when i use prisma extension, i get this kind of error on my ide,
omg we have exceed the limitation of typescript, what can be done? #typescript
2 replies
readFileSync" is not exported by
pnpm build got this error, any clue?
31.45 ℹ ✓ 8407 modules transformed.
31.46
31.46 ERROR x Build failed in 25.84s
31.46
31.46
31.46 ERROR Nuxt Build Error: server/lib/s3.server.ts (11:9): "readFileSync" is not exported by "__vite-browser-external", imported by "server/lib/s3.server.ts".
31.46 file: /src/movingfwd/server/lib/s3.server.ts:11:9
31.46
31.46 9: import { getSignedUrl as s3GetSignedUrl } from '@aws-sdk/s3-request-presigner'
31.46 10: import AWS from 'aws-sdk'
31.46 11: import { readFileSync } from 'node:fs'
31.46 ^
31.46 12: import { nodeWithDefaults } from '@/lib/default'
31.46
error on import section:
2 replies
PPrisma
•Created by u007 on 5/30/2024 in #help-and-questions
mongodb connection randomly unable to connect
https://github.com/prisma/prisma/discussions/11929#discussioncomment-9600119
Error: MongoDB error
Server selection timeout: No available servers. Topology: { Type: ReplicaSetNoPrimary, Servers:
this happen randomly after 2 to 3days of running on production
6 replies
PPrisma
•Created by u007 on 5/8/2024 in #help-and-questions
where inside include
hi im using mongodb driver with prisma 5.7.1,
i realise module.Chat seems to return even thou providerSenderId is null, does where condition works inside include?
2 replies