tafelito
05/30/2019, 6:02 PMHyo
05/31/2019, 6:36 AMazure fabric mesh service
?Michał Chmura
05/31/2019, 8:23 AMThor Mengkheang
05/31/2019, 8:50 AMThor Mengkheang
05/31/2019, 8:51 AMThor Mengkheang
05/31/2019, 8:51 AMMatteo Villa
05/31/2019, 9:24 AMSteven Vachon
05/31/2019, 12:47 PMvictory1908
05/31/2019, 2:29 PMevondev
05/31/2019, 2:40 PMHyo
05/31/2019, 3:19 PMPrisma
I’ve just saw the announcement on Prisma Day
! https://www.prisma.io/day/#community. I was really unhappy on zeit
support for prisma
but I’d really love to see news here on Prisma Day
from the ceo of ZEIT
. I’d love to participate but I can’t since I am on busy days in my country. 😿Sávio Serra
05/31/2019, 10:42 PMPRISMA_CONFIG
?John Cantrell
06/01/2019, 1:08 PMJohn Cantrell
06/01/2019, 1:10 PMiago
06/01/2019, 4:57 PM@embedded
in a back-relation (inline)?Steven Vachon
06/01/2019, 5:40 PMtype Query {
id: ID! @id
thing: [Thing!]!
}
and getting:
The typehas is using a reserved type name. Please rename it.Query
Steven Vachon
06/01/2019, 5:40 PMSteven Vachon
06/01/2019, 5:46 PMid
, it tells me that i need itKrusPat
06/01/2019, 9:11 PMKrusPat
06/01/2019, 9:11 PMScottAgirs
06/02/2019, 7:06 PM{
"data": null,
"errors": [
{
"message": "Value for field email is too long.",
"locations": [],
"path": [
"createUser"
],
"code": 3007,
"requestId": "us1:cjwfb6gjzzyp70b12cag9l2g2"
}
]
}
has anyone seen this before?
I am initiating a new project with Prisma v1.32.0-beta and with the most basic datamodel (containing solely type User with email, password, name) performing a createUser
mutation to which, if the email (@unique
field) is longer than (now trying email:"<mailto:johanson.johanson@gmail.com|johanson.johanson@gmail.com>"
) it throws the above error - huh!?
In other projects with v1.27 nothing like this has been seen beforeNicolas Sefercheoglou
06/03/2019, 12:47 PMMichał Chmura
06/03/2019, 1:20 PMPrisma.query.users()
call? e.g. if I do await Prisma.query.users(data, `{ id email tasks { id } }`)
but it's unmaintainable for bigger models:
is there GraphQLResolveInfo
option to resolve all?Doug Daegal
06/03/2019, 3:17 PMNew & Noteworthy
section: http://r.labfortysix.com/link-reminder-1
I'm interested in using it for my company, just want to get some feedback in case someone here has used it before. Looks pretty interesting, you add the bot to your work channel and it automatically creates reminders as your team chats, then if someone's done their task, it sends you a DM so you don't have to waste time or feel awkward following up with people.Hebilicious
06/03/2019, 3:26 PMtype Area {
...
name: String! @unique
areaType: AreaType!
geometry: Json
...
}
It works fine, except for some of the entries where I get this error message : Error: Value for field geometry is too long.
The thing is the JSON are not that large, they’re between 10kb and 100kb.
The whole dataset has roughly 10000 entries, and a size of 515mb. The maximum size for a column entry should be around 1GB according to the documentation.
Has anyone encountered a similar situation?
Is there any way to increase that limit ?Brandon Johnson
06/03/2019, 4:04 PMpiscis
06/03/2019, 4:04 PMJulius de Bruijn
06/03/2019, 4:05 PMMichał Chmura
06/03/2019, 4:13 PMSteven Vachon
06/03/2019, 4:13 PM