How to query all the GraphQL type fields without writing a long query?

Unfortunately what you’d like to do is not possible. GraphQL requires you to be explicit about specifying which fields you would like returned from your query.

Leave a Comment