7 ms·
Probably a dumb question but if my web app uses graphql, how would I go about with the swagger generation?(since its just one endpoint) Thank you for sharing t
by notcrazylol 2y ago
Probably a dumb question but if my web app uses graphql, how would I go about with the swagger generation?(since its just one endpoint)
Thank you for sharing this though, I was looking for a tool like this :)
- alp1n3_eth 2y agoHave you tried something like GraphQL playground before? https://github.com/graphql/graphql-playground https://github.com/graphql/graphql-playground There's other tools out there that can generate similar docs or playgrounds, given you have a schema/spec of some type.
- rat87 2y agoWhy would you use swagger/openapi? My understanding is that graphql has its own schema system that's supposed to be returned by the server when the client requests it. https://graphql.org/learn/schema/ https://graphql.org/learn/schema/