Welcome to the interactive GraphQL examples! These pages demonstrate Polen's interactive code blocks with hover tooltips, click navigation, and inline error hints.
Dive into different aspects of the Pokemon universe:
query InvalidExample {
pokemon(id: "001") {
name
types
level # ← This field doesn't exist!
abilities {
name
power # ← Abilities don't have power!
}
}
}
All GraphQL syntax is properly highlighted including:
query
, fragment
, on
)