About JSON to GraphQL Conversion
GraphQL is a query language for APIs that provides a complete description of the data in your API. This tool generates GraphQL type definitions from JSON data.
- Type System: Converts JSON types to GraphQL scalar types (String, Int, Float, Boolean)
- Nested Objects: Automatically creates custom types for nested objects
- Arrays: Converts arrays to GraphQL list types [Type]
- Nullability: Optional fields are marked with ! for required fields
- Query Generation: Creates example queries based on the schema
Supported JSON Types:
- String → String
- Number (integer) → Int
- Number (float) → Float
- Boolean → Boolean
- Array → [Type]
- Object → Custom Type
- null → Nullable field