Skip to content

Instantly share code, notes, and snippets.

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