Why convert JSON to GraphQL?
Designing a GraphQL schema from an existing API payload by hand takes time. Paste a sample JSON document above and get ready-to-use SDL type definitions in milliseconds, with one type per nested object.
How it works
The converter parses your JSON locally and emits GraphQL SDL: one type per nested object,
with fields marked non-null (!) by default. Null values and heterogeneous arrays fall back
to a custom JSON scalar, which is declared only when needed.