Skip to content

Instantly share code, notes, and snippets.

@mosufy
Created June 5, 2021 01:28
Show Gist options
  • Save mosufy/11d22a9764cea4524a84f8c406863eb9 to your computer and use it in GitHub Desktop.
Save mosufy/11d22a9764cea4524a84f8c406863eb9 to your computer and use it in GitHub Desktop.
import db from 'Db';
export const getUserById = id => {
return db.select('username,email')
->from('users')
->where('id', id)
->first();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment