How to split schema.graphql file?

you can split them up then use the fancy bash script to send it to dgraph/slashgraphgql

cat *.graphql >> schema.graphql

You might want to ensure schema.graphql isn’t there first so

rm schema.graphql && cat *.graphql >> schema.graphql