atito
03/03/2018, 6:25 PMCannot return null for non-nullable field
when trying to delete resource and asking for fields on a relation.
Is that normal? if yes, Is that the correct behavior?
example:
mutation {
deletePost(where: {
id: "<ID>"
}) {
id
user {
id // this cause an error
}
}
}
PS: I’m testing that against Prisma APIsmatic
03/04/2018, 1:26 PM