0.0.2 • Published 3 years ago

knex-first-or-fail v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

knex-first-or-fail

Add knex('users').firstOrFail(). Plug and play.

Features

  • Includes the TypeScript type definition.
  • Works with select and returning.
  • Under 20 LOC

Install

yarn add knex-first-or-fail

Usage

import 'knex-first-or-fail';

import createKnex from 'knex';

export const knex = createKnex(dbConfig);

And you are ready to go.

knex('users').where({ id: 1 }).firstOrFail()