Query 库显示哪些文章有缩略图,哪些没有
显示哪些文章有缩略图,哪些没有
此 query 检索所有有缩略图的文章以及没有缩略图的文章。
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
}
}Prev
Next