query($page: Int){ entries: allBlog(perPage: 10, page: $page, sortBy: "created", order: DESC, filter: {category: { contains: ["foundation"]}}) @paginate{ totalCount pageInfo { totalPages currentPage } edges { node { title tags{ id title path } excerpt category{ id title } image(width:800) path humanTime : created(format:"DD MMM YYYY") datetime : created authors { id name image(width:64, height:64, fit:inside) path } } } } markdownPage(id: "home") { id metaImg } topics: allBlogTag { edges{ node{ title } } } }