Visualize GraphQL types, fields, arguments, and relationships from SDL.
The frame below runs the same code as this page, in the reader's own browser. Nothing is sent to us, and nothing is sent to you.
Pick a dark background and the text and panels follow it, so the frame stays readable on a dark page.
SDL definitions become object, interface, union, enum, scalar, input, and directive nodes; type wrappers and fields become graph annotations. The viewer renders checked-in schema text and does not execute resolvers.
type User {
id: ID!
name: String!
email: String
}
type Post {
id: ID!
title: String!
author: User!
}
type User {
id: ID!
name: String!
email: String
}
type Post {
id: ID!
title: String!
author: User!
}
API contract reviews, frontend planning, and documentation visualize GraphQL SDL.