Skip to content

synthql/SynthQL

Repository files navigation

SynthQL

SynthQL

A full-stack, type-safe client to your PostgreSQL database with a focus on DX and performance.

Show me some code

const query = from('films')
    .columns('id', 'title', 'year')
    .where({ id: { in: [1, 2] } })
    .many();

const { data } = useSynthql(query);

// `data` will resolve to
[
    {
        id: 1,
        title: 'The Lord of the Rings: The Fellowship of the Ring',
        year: '2001',
    },
    {
        id: 2,
        title: 'The Lord of the Rings: The Two Towers',
        year: '2002',
    },
    {
        id: 3,
        title: 'The Lord of the Rings: The Return of the King',
        year: '2003',
    },
];

Links

About

A fullstack, type-safe client for your PostgreSQL database

Resources

Stars

Watchers

Forks