Share
Pretty-print or minify GraphQL queries and SDL.
query
getUser($id: ID
!) {
user(id: $id) {
id
name
email
posts(first: 5) {
id
title
}
}
}
Format messy GraphQL queries, mutations, and SDL schemas with consistent indentation, or minify to a single line. Includes a syntax check that flags unmatched braces, missing brackets, and stray characters.
Share this tool