humblefool
04/09/2019, 2:15 PMschema.graphql
files (there can be more once the entities increase) with their separate types and queries and mutations. I am using extend
keyword to extend mutations and queries in those. But, when I am trying to run the server, it does not seem to have find the query and mutations defined in one schema file. I am creating the server like this new GraphQLServer({
typeDefs: [ '111.schema.graphql',
'222.schema.graphql',
],
resolvers,
context: { prisma },
});
If this is not the right place, could you please point me to the correct place, if you happen to know one.Andrei Bacescu
04/22/2019, 10:21 AM