Taylor
05/26/2021, 5:35 PMTaylor
05/26/2021, 5:35 PMDaniil
05/26/2021, 9:44 PMBollo Omar
05/26/2021, 9:46 PMVictor Björklund
05/27/2021, 7:27 AMPedro
05/27/2021, 11:29 AMJohn Cantrell
05/27/2021, 2:03 PMMitchell Amihod
05/27/2021, 3:11 PMwarn Versions of prisma@2.23.0 and @prisma/client@2.22.1 don't match.
but i dont have 2.23 installed. My npm lock file is "@prisma/client": "^2.22.1",
and i use npm ci
I cant find prisma 2.23 anywhere in my package lock file. Anyone have any idea why would be getting this warning?Mitchell Amihod
05/27/2021, 3:11 PMnpm ci
Mitchell Amihod
05/27/2021, 3:15 PMMitchell Amihod
05/27/2021, 3:15 PMMitchell Amihod
05/27/2021, 3:15 PMMykyta Machekhin
05/27/2021, 5:07 PMupsertMany
method in future?Bryan
05/27/2021, 6:08 PMDrift detected: Your database schema is not in sync with your migration history.
Is just doing a schema diff in my db the best way to resolve this?Niko Guerra
05/27/2021, 10:09 PM$queryRaw
not support CREATE TEMPORARY TABLE
statements yet? Received this and was wondering if it was not supported or if it was me and I have to get creative (For MySQL)
{
"code": "P2010",
"clientVersion": "2.22.0",
"meta": {
"code": "1295",
"message": "This command is not supported in the prepared statement protocol yet"
}
}
Pedro
05/28/2021, 10:35 AMPedro
05/28/2021, 10:36 AMjanpio
Vigan Zeqiri
05/28/2021, 2:44 PMschema.prisma
? If i do so, migrations are not working, even if i leave that the env var does not existJared Salzano
05/28/2021, 4:44 PMTharshan
05/28/2021, 7:23 PMTharshan
05/28/2021, 7:23 PMSlackbot
05/28/2021, 9:31 PMKerem Kazan
05/28/2021, 10:57 PMyoenho park
05/29/2021, 7:40 AMVignesh
05/29/2021, 12:01 PMconst getUser = await prisma.user.findUnique({
where: {
id: 19,
},
include: {
posts: true,
},
})
Ibad Shaikh
05/29/2021, 12:36 PMgroupBy
but it only involves a single model & gives the average of a particular field.
But in my case the situation is little different.
Anyone who can guide me.Paul
05/29/2021, 4:40 PMPaul
05/29/2021, 4:41 PMwhere: {
foo: {
in: ["abc", "def"]
}
}
Was possible.