Skip to content

Instantly share code, notes, and snippets.

@lovemycodesnippets
Created February 7, 2025 17:04
Show Gist options
  • Save lovemycodesnippets/5fa0a54890787826afa1f70d13ce7fcd to your computer and use it in GitHub Desktop.
Save lovemycodesnippets/5fa0a54890787826afa1f70d13ce7fcd to your computer and use it in GitHub Desktop.
From the article "Building a Quiz App with Nuxt and Xata"
import { getXataClient } from "~/src/xata";
const xata = getXataClient();
export default defineEventHandler(async (event) => {
const questions = await xata.db.questions.getMany();
return questions;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment