Bibliothèque de queries
Bibliothèque de queriesAfficher quels articles ont une miniature et lesquels n'en ont pas

Afficher quels articles ont une miniature et lesquels n'en ont pas

Cette requête récupère tous les articles qui ont une miniature et ceux qui n'en ont pas.

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
  }
}