objection-unique icon indicating copy to clipboard operation
objection-unique copied to clipboard

Unique validation for Objection.js

Results 13 objection-unique issues
Sort by recently updated
recently updated
newest added

Bumps [qs](https://github.com/ljharb/qs), [qs](https://github.com/ljharb/qs) and [qs](https://github.com/ljharb/qs). These dependencies needed to be updated together. Updates `qs` from 6.4.0 to 6.5.3 Changelog Sourced from qs's changelog. 6.5.3 [Fix] parse: ignore __proto__ keys (#428)...

dependencies

Bumps [knex](https://github.com/tgriesser/knex) from 0.13.0 to 0.19.5. Changelog *Sourced from [knex's changelog](https://github.com/knex/knex/blob/master/CHANGELOG.md).* > # 0.19.5 - 06 October, 2019 > > ### New features: > > - CLI: Migrations up/down commands...

dependencies

This npm package needs a TypeScript types declaration file so that developers who enjoy writing with TS can use it with this package and have a better development experience. Would...

Adding typescript types Types where missing :)

I'm doing it in incremental steps in favor of #21

I have used "objection-soft-delete" package for soft delete data. I want to handle "objection-unique" with "objection-soft-delete". Currently, it's will also check deleted data.

discussion

I added objection-unique to my Users model to make user email addresses unique: ``` const unique = require('objection-unique')({ fields: ['email'], identifiers: ['id'] }); ``` However when I do a graph...

bug

It seems that this plugin ensures that values from the fields specified are each unique on the table. How would I go about using this plugin to ensure that the...

enhancement