Schemas documentation

Hello,

Is there any way to define our schema and its structure using something like swagger or any documentation framework? if we have web and mobile apps how can other front-end developers use our backend if they don’t know what objects and its structures as well as do queries. I know there’s schemas endpoint but it requires master key which we don’t use in our client side (web or mobile) at all.

Thanks

You can activate the GraphQL API and host a GraphiQL interface with a pre-configured Parse app ID.

Additionally, you can use tools like Studio, where you only need to specify your Parse GraphQL server URL and the ‘X-Parse-Application-Id’ header, similar to the REST API.

GraphQL was developed for this purpose because it generates auto-generated documentation. Front-end developers can easily explore the full potential of the API and the query/searching system.

@aboozaid