Preql
Preql copied to clipboard
An interpreted relational query language that compiles to SQL.
Results
17
Preql issues
Sort by
recently updated
recently updated
newest added
Preql can already serve tables and functions over starlette. We can generate an interface for GraphQL automatically, and serve it in the same way.
feature
Allow to auto-join when accessing an attribute, based on declaration: ```javascript table Country { name: string } table Person { country: Country } Person {country.name} // results in a join...
feature