Non-Public Schema Support
Our initial release of Solarflare allowed you to make tables in your Postgres public schema live and accessible directly from frontend React components.
We now support exposing tables from any schema in Postgres. You can write useTable('posts') which defaults to the public.posts table, or useTable('my_schema.posts') to target a table in any other schema.
index.tsx
Back to Changelog