Queries-BibliothekAnzeigen, welche Beiträge ein Vorschaubild haben und welche nicht
Anzeigen, welche Beiträge ein Vorschaubild haben und welche nicht
Diese query ruft alle Beiträge ab, die ein Vorschaubild haben, und jene, die keines haben.
query GetPostsWithAndWithoutThumbnail {
postsWithThumbnail: posts(
filter: {
metaQuery: {
key: "_thumbnail_id",
compareBy: {
key: {
operator: EXISTS
}
}
}
},
pagination: { limit: -1 }
) {
id
title
featuredImage {
id
src
}
}
postsWithoutThumbnail: posts(
filter: {
metaQuery: {
key: "_thumbnail_id",
compareBy: {
key: {
operator: NOT_EXISTS
}
}
}
},
pagination: { limit: -1 }
) {
id
title
}
}