I'm playing with relay-starter-kit. I've also used sangria to create a graphql server. Now I'm trying to wire the two together.
In relay-starter-kit, every time you alter the schema, you need to run a script to regenerate the schema.json file. But since graphql supports schema introspection I'm wondering if there's a way to configure my relay app to introspect the schema from the server when it starts up.
Does anyone know if this is possible or worked out how to do this?
Looks like we need something like this (from https://github.com/facebook/relay/blob/master/scripts/jest/updateSchema.js#L25):