Skip to content

Instantly share code, notes, and snippets.

@cannap
Created May 18, 2018 14:51
Show Gist options
  • Save cannap/594fe4f17f395aff0c549e26e61ab404 to your computer and use it in GitHub Desktop.
Save cannap/594fe4f17f395aff0c549e26e61ab404 to your computer and use it in GitHub Desktop.
async function findOrCreateUser(user, field, value) {
const user = await User.where({
[field]: value
}).fetch()
if (user) return user
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment