Skip to content

Instantly share code, notes, and snippets.

@ThePendulum
Created January 9, 2019 20:35
Show Gist options
  • Save ThePendulum/3f8cc7282291cdcfd8fe9b880527bf0d to your computer and use it in GitHub Desktop.
Save ThePendulum/3f8cc7282291cdcfd8fe9b880527bf0d to your computer and use it in GitHub Desktop.
const result = await knex('tags_assigned')
.where({
task_id: taskId,
group_id: tag.group_id,
})
.leftJoin('tags_available', 'tags_assigned.tag_id', 'tags_available.id');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment