GraphQL to REST

Parse a GraphQL query into suggested REST paths, or turn a REST path back into a GraphQL query draft.

FAQ

Are the suggested REST paths final results?
No. The conversion is a local parse with simple guessing rules: plural forms may be wrong and the innermost fields are placeholders. Fill in real fields from your schema before use and treat the output as a design starting point.
Which syntax is supported and why do parse errors happen?
Operation names, nested fields and arguments are supported; fragments and directives are not. On a parse error, check for unclosed brackets or truncated strings and compare with the samples. Parsing runs locally with no network access.

All data is processed locally in your browser. Nothing is uploaded.