# Query at http://localhost:8000/graphql
{
items(skip: 0, limit: 10) {
id
name
price
}
}
# Mutation
mutation {
createItem(name: "New Item", price: 15.0) {
id
name
}
}
✏️ Exercise: Create a GraphQL schema with User type (id, username, email). Add queries for users and user(id). Add a mutation to create a user.