Guest User

Untitled

a guest
May 20th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. knex
  2. .with('author_books', knex('books').where('author_id', 100))
  3. .with('author_books_deleted', knex('author_books').whereNotNull('deleted_at'))
  4. .select('*')
  5. .from('author_books_deleted');
Add Comment
Please, Sign In to add comment