THpubs
12/18/2018, 1:25 PMTHpubs
12/18/2018, 1:25 PMJosh
12/18/2018, 2:00 PMTHpubs
12/18/2018, 2:10 PMfaure
12/18/2018, 5:23 PMfaure
12/18/2018, 5:24 PMDaniel Dosen
12/18/2018, 6:51 PMDaniel Dosen
12/18/2018, 6:58 PMJosh
12/18/2018, 9:52 PMLucas Munhoz
12/19/2018, 7:23 AMRaj
12/19/2018, 7:34 AMed
12/19/2018, 11:07 AMed
12/19/2018, 11:08 AMschema.graphql
and not the prisma resolversed
12/19/2018, 11:09 AMschema.graphql
ed
12/19/2018, 11:09 AMfgreinus
12/19/2018, 1:22 PMGarvold
12/19/2018, 4:35 PMlukas
12/19/2018, 8:40 PMGraphQL error: Your token is invalid. It might have expired or you might be using a token from a different project.
probably I have to pass env variable to start script…but can not find it in doc
I have tried
prisma-admin localhost:xxxx --env-file NAME
but getting same errorNatalia Majkowska
12/19/2018, 9:34 PM"Cannot query field 'any name of my mutation' on type 'Mutation'.
, locally everything works but after prisma deploy
I don't have my mutations in docs for my endpoint. I am using
"graphql-yoga": "^1.16.7",
"prisma": "^1.23.1",
"prisma-binding": "^2.2.11"
Do you have any ideas why?Fran Dios
12/20/2018, 2:31 AMBruno Prela
12/20/2018, 3:55 AMbengie
12/20/2018, 4:06 AMbengie
12/20/2018, 4:08 AMbengie
12/20/2018, 4:08 AMLucas
12/20/2018, 4:33 AM"message": "Cannot return null for non-nullable field Query.users.",
Query:
query {
users{
id
}
}
Code:
https://github.com/RecoX/test-graph/blob/master/src/schema.graphqlLucas
12/20/2018, 5:25 AMLucas
12/20/2018, 5:25 AMLucas
12/20/2018, 5:39 AMhinsxd
12/20/2018, 7:51 AMhinsxd
12/20/2018, 7:53 AMtype User {
a
b
c
d
}
and my schema is
type User {
a
b
Profile
}
type Profile {
d
e
}