Greetings everyone, I am trying to do the following query on the graphql server to get the schema and reuse it on my server
{
__schema {
types {
name
}
}
}
That’s what I am getting:
“message”: “Cannot query field "__schema" on type "Query".”,
screenshot:
My reference: Introspection | GraphQL
How can I do that and avoid rewriting the whole schme on myself.