Skip to Content
sitedocsPlayground

Last Updated: 3/9/2026


Playground

@wirekang  has created a playground for Kysely . You can use it to quickly test stuff out and for creating code examples for your issues, PRs and Discord messages.

<Playground code={const person = await db .selectFrom('person') .select(['id', 'first_name']) .where('id', '=', 1) .executeTakeFirst() } />

Codesandbox

We also have a minimal code sandbox example .