Biblioteca de queries
Biblioteca de queriesMostrar qué entradas tienen miniatura y cuáles no

Mostrar qué entradas tienen miniatura y cuáles no

Esta consulta obtiene todas las entradas que tienen miniatura y aquellas que no la tienen.

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