functional-orm icon indicating copy to clipboard operation
functional-orm copied to clipboard

100% typesafe SQL querybuilder.

Results 7 functional-orm issues
Sort by recently updated
recently updated
newest added

_Dependabot Preview will be shut down on August 3rd, 2021. In order to keep getting Dependabot updates, please merge this PR and migrate to GitHub-native Dependabot before then._ Dependabot has...

dependencies

Bumps [ts-morph](https://github.com/dsherret/ts-morph) from 7.3.0 to 11.0.0. Commits 2c67a6b chore(release): 11.0.0 9c4293a chore: Fix code verification. a0f81f8 chore(release): bootstrap and common 0.10.0 e192d41 feat: #1156 - Add ReferenceFindableNode to ConstructorDeclaration. cd426a0...

dependencies

Right now it's necessary to always write full where syntax: ``` .where({ [WhereOp.$and]: [['id', Op.$in, [1, 2, 3]]] }) ``` it should be possible to write just ``` .where({ [WhereOp.$and]:...

It should be possible to write more complicated WHERE clauses, such as `WHERE waga < 50 AND (name = 'jason' OR (age > 3 AND age < 18))`

Refactor DB connection is the connection is created and maintained by this library instead of requiring an external connection to be passed to `execute`. - [ ] automatically create a...

PostgreSQL has special array-type columns: https://www.postgresql.org/docs/12/arrays.html Follow the comments in this thread to support BigInt for arrays too: vitaly-t/pg-promise#657