I am trying to create a Schema, however is going to get too long and confusing, what are the best practices to split the different queries, mutations and inputs so I can just r
You could use Type definitions (SDL) merging of graphql-tools
as well.
This tools merged GraphQL type definitions and schema. It aims to merge all possible types, interfaces, enums and unions, without conflicts.
The doc introduces multiple ways to merge SDL.
I made an example of modularizing-the-schema using apollo-server
tech stack.