First question, is there a cloud UI style app when working with graphQL available? I haven’t seen anything in the docs. I’m guessing no because there is a push for people to use the cloud service?
If not, then is my best bet using something like graph.playground or altair?
I’m trying both apps and when trying to add a schema I keep on getting:
Works if I do this via CURL. Is the only way to use CURL? I notice in the documentation that it mentions alternatives such as Altair, etc. But when wanting to manage the schema, it points to CURL. The language used doesn’t say whether CURL is mandatory or not…
When using an APP. If I look at the server, I get:
You can use any GraphQL playground, I recently started using Apollo Studio. And then point it at the admin endpoint to update the schema or point it at the graphql endpoint to introspect the current schema and run queries mutations
It is via cURL that you do this. You can do it via some IDE or GraphQL client, but you need more experience in GraphQL to do so. Cuz you need to parse the schema before send the Schema mutation. Keep it simple via cURL.
Thanks, this is what I was looking for. In the documents it mentions right before using CURL. That there are other apps. So there is some ambiguity here.
It would be helpful to new users like me, who are not going down the traditional cloud route. That CURL is the only way to go. It should be more direct.
The admin endpoint is graphql so you would need to run a mutation to set the schema and pass your schema as the input as an escaped string. You can’t send just your schema like you tried above to the admin endpoint.