How do you all import your types from `datamodel.p...
# prisma-client
l
How do you all import your types from
datamodel.prisma
into
schema.graphql
so I don’t need to re write them ?
b
I'm interested on that as well
v
graphql get-schema --project database -o src/generated/prisma.graphql
+ graphql-import (comes as part of yoga)
that gets you a prisma.graphql file (without the annotations)
then
# import
works