Skip to content

Instantly share code, notes, and snippets.

@hansott
Created December 12, 2021 16:20
Show Gist options
  • Save hansott/46730a2b1ea653c47f8bd6c27b9f1b26 to your computer and use it in GitHub Desktop.
Save hansott/46730a2b1ea653c47f8bd6c27b9f1b26 to your computer and use it in GitHub Desktop.
export function getUserByEmail(mysql: MySQL, email: string) {
return await mysql.select(
"SELECT id, email, ... FROM users WHERE email = :email",
{ email: email }
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment