We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a34f0ab commit 8c09e45Copy full SHA for 8c09e45
apps/page/pages/api/posts.ts
@@ -21,7 +21,7 @@ async function handler(
21
try {
22
const { data: posts } = await supabaseAdmin
23
.from("posts")
24
- .select("id,title,content,type,publication_date,updated_at,created_at")
+ .select("id,title,content,tags,publication_date,updated_at,created_at")
25
.eq("page_id", String(page_id))
26
.eq("status", "published")
27
.range(Number(offset), Number(PAGINATION_LIMIT - 1 + Number(offset)))
0 commit comments