Skip to main content
gqless Logo

a GraphQL client built for rapid iteration.

Get Started ›Introduction

Build your app.

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

GQless brings it to life

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