Fran Dios
12/20/2018, 2:31 AMFran Dios
12/20/2018, 2:46 AMcustomerId
as INT but I was saving it as STRING. Worked well but it crashes now.do4gr
Fran Dios
12/21/2018, 2:07 AMtype Order {
customerId: String!
postageFee: Int!
}
db.mutation.createOrder({
data: {
customerId: 1111, // int
postageFee: "2222" // string
}
})
Fran Dios
12/21/2018, 2:08 AMFran Dios
12/21/2018, 2:09 AMFran Dios
01/11/2019, 9:04 AMFran Dios
01/11/2019, 9:04 AMdo4gr
do4gr
Fran Dios
01/11/2019, 9:42 AMFran Dios
01/11/2019, 9:45 AMExpected type Int at value.quantity; Int cannot represent non-integer value: "1"
from Prisma. It’s a mutation from the front end where I was passing "1"
instead of 1
. Working for months until I updated from 1.19 to 1.23do4gr
Fran Dios
01/11/2019, 11:18 AM