title | metaTitle | metaDescription | staticLink | experimental | hidePage | duration | hnPostId | skipBuild |
---|---|---|---|---|---|---|---|---|
Example |
Example metaTitle |
Example meta desc |
false |
false |
true |
123456 |
false |
This page is just an example MDX.
Will be auto-generated from h2 headings
Lorem ipsum, or lipsum as it is sometimes known, is dummy text used in laying out print, graphic or web designs. The passage is attributed to an unknown typesetter in the 15th century who is thought to have scrambled parts of Cicero's De Finibus Bonorum et Malorum for use in a type specimen book.
- one
- two
- three
async function main() {
const allUsers = await prisma.user.findMany()
console.log(allUsers)
}
datasource db {
provider = "sqlite"
url = env("DATABASE_URL")
}
generator client {
provider = "prisma-client-js"
}
model Post {
id Int @id @default(autoincrement())
title String
content String?
published Boolean @default(false)
author User? @relation(fields: [authorId], references: [id])
authorId Int?
}
model User {
id Int @id @default(autoincrement())
email String @unique
name String?
posts Post[]
}
async function main() {
const allUsers = await prisma.user.findMany()
console.log(allUsers)
}
async function main() {
const allUsers = await prisma.user.findMany()
console.log(allUsers)
}
async function main() {
+ added code
- deleted code
| neutral highlight
}
inlineCode
4 different icons available
<TabbedContent tabs={[, ]}>
id | name | |
---|---|---|
1 |
"[email protected]" |
"Sarah" |
2 |
"[email protected]" |
"Maria" |
npm run dev
Expand if you want to view more
More :)
id | name | |
---|---|---|
1 |
"[email protected]" |
"Sarah" |
2 |
"[email protected]" |
"Maria" |