how to modularize my schema definition for API? in...
# orm-help
w
how to modularize my schema definition for API? in all examples graphql-yoga includes single
schema.graphql
as
typeDefs: '<path to schema.graphql>'
h
you can also pass a premade schema
you can make this schema by many means like using
makeExecutableSchema
from graphql tools and using graphql modules to import it
w
is there any tutorial?
here is an example