beeman
05/03/2020, 2:07 AMmatic
05/11/2020, 7:43 AMWarren Day
05/29/2020, 9:46 AMSytten
06/05/2020, 3:36 PMEtel
Michael Aubry
07/23/2020, 12:46 AMWarren Day
07/24/2020, 4:12 PMKaran
07/24/2020, 7:18 PMKaran
07/29/2020, 8:25 AMDaniel Norman
Daniel Norman
Eddy Nguyen
08/23/2020, 5:19 AMMichael Aubry
09/01/2020, 3:48 PMsapkra
10/07/2020, 7:09 PMarnaud
10/14/2020, 7:06 AMAurelienFT
11/27/2020, 10:59 AMMatija Sosic
12/02/2020, 10:54 AMJan Wilhelm
01/25/2021, 8:20 AMYusuf Erdogan
01/28/2021, 8:41 AMSylvain (seel-vahn)
02/08/2021, 9:10 AMMike Cavaliere
02/08/2021, 4:18 PMMatija Sosic
02/11/2021, 3:50 PMJan Wilhelm
02/12/2021, 7:47 PMVasil
02/17/2021, 3:27 PMKATT
03/01/2021, 8:54 AMfetch()
), & one for react which just adds type safe sugar from your backend onto react-query.
If anyone has any questions or feedback, feel free to DM me!
👉 Have a look at https://trpc.io 👈Michael Aubry
03/04/2021, 7:43 PMMartin Šošić
03/17/2021, 4:21 PMmodel
(although that is the most complicated part of PSL) + it was written for Prisma 2.17, we have to yet enrich it with new syntax that was added in 2.19.
Source code : https://github.com/wasp-lang/wasp/tree/b10885e29c065a21cfa408fc6c9db8a2ce675cc0/waspc/src/Psl .Sylvain (seel-vahn)
03/17/2021, 10:42 PMIan Ray
03/29/2021, 8:31 AMsnake_case
naming conventions… or worse, no naming conventions 😳
https://www.npmjs.com/package/prisma-case-format
model house_rating {
id Int @id @default(autoincrement())
house_id String
house house @relation(fields: [house_id], references: [id])
...
}
👉 becomes
model HouseRatings {
id Int @id @default(autoincrement())
houseId String @map("house_id")
house House @relation(fields: [houseId], references: [id])
@@map("house_ratings")
}
for every model!Levi Lawliet
04/09/2021, 4:35 AM