mirror of
https://github.com/LaconicNetwork/laconic.com.git
synced 2026-09-09 11:04:07 +00:00
Implement Featured logic, maybe
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
const PressFeatured = {
|
||||
query: `
|
||||
{
|
||||
allBlogPosts(filter: { featured: { eq: true }}, orderBy: date_DESC) {
|
||||
featured
|
||||
date
|
||||
author {
|
||||
name
|
||||
}
|
||||
category {
|
||||
title
|
||||
}
|
||||
image {
|
||||
url
|
||||
}
|
||||
slug
|
||||
title
|
||||
content {
|
||||
value
|
||||
}
|
||||
}
|
||||
}
|
||||
`
|
||||
}
|
||||
|
||||
export { PressFeatured }
|
||||
Reference in New Issue
Block a user