Skip to main content
gqless Logo

a GraphQL client built for rapid iteration.

Get Started ›Interactive Examples ›Explore features ›

Access GraphQL data

const App = () => {
const { me, users } = useQuery();
return (
<div>
Hello {me.name}!
{users({ limit: 10 }).map((user) => (
<User key={user.id || 0} user={user} />
))}
</div>
);
};

Fetched automagically

query {
me {
name
}
users(limit: 10) {
id
name
}
}