yezyilomo / django-restql

Turn your API made with Django REST Framework(DRF) into a GraphQL like API.
https://yezyilomo.github.io/django-restql
MIT License
620 stars 43 forks source link

Exploring Endpoints #177

Closed king-11 closed 4 years ago

king-11 commented 4 years ago

Is there something like swagger that we can use to explore the newly created endpoints?

yezyilomo commented 4 years ago

Django RestQL doesn't create new endpoints, you can browse your API through the interface provided by django rest framework itself. If you need something like Swagger check https://www.django-rest-framework.org/topics/documenting-your-api/#generating-documentation-from-openapi-schemas.

king-11 commented 4 years ago

Actually, with swagger, I can test by rest APIs easily but with django-restql I have to use postman like clients to check if there is some issue with permissions or authentication so I was looking for an easier method to test the graphql endpoints created using Django-restql.