Stop spending months developing backend APIs for your apps.
With subZero, you’ll have the API for your MVP ready today
and you can get back to building your product.
Use the full power of PostgreSQL to define your schema. Views, functions, triggers, language extensions, everything works. »
create table project (
id serial primary key,
name text not null,
managerId int,
check (length(name)>2)
);
Leverage the time-tested Role-Based Access Control of your database to define granular and flexible permissions in a clear way. »
grant select on project to managers;
create policy manager_project_policy
for select on project to managers
using (request.user_id()=managerId);
Use the auto-generated GraphQL & REST api to build apps faster than you thought possible, with any frontend technology or framework.
{ projects(
where: {
name: {like: "*subzero*"}
}
) { id name }
}