ไลบรารี Queries
ไลบรารี Queriesแสดงว่าโพสต์ใดมีภาพขนาดย่อและโพสต์ใดไม่มี

แสดงว่าโพสต์ใดมีภาพขนาดย่อและโพสต์ใดไม่มี

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