Skip to content

Instantly share code, notes, and snippets.

@oxlb
Last active May 21, 2022 14:55
Show Gist options
  • Save oxlb/efe563a85f5d3502db9e00f07f5a6a28 to your computer and use it in GitHub Desktop.
Save oxlb/efe563a85f5d3502db9e00f07f5a6a28 to your computer and use it in GitHub Desktop.
async function getStudents() {
const result = await knex.select().from('student');
return result;
}
/*
You can uncomment line 6 to 12 to test the database connectivity
(async() => {
const students = await getStudents();
console.log(students);
})();
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment