query($page: Int){ entries: allNews(perPage: 10, page: $page, sortBy: "created", order: DESC, filter: {category: { contains: ["foundation"]}}) @paginate{ totalCount pageInfo { totalPages currentPage } edges { node { id tags{ id title path } excerpt category{ id title } image(width:800) path humanTime : created(format:"DD MMM YYYY") datetime : created } } } markdownPage(id: "home") { id metaImg } topics: allNewsTag(filter: { title: {in: ["blockchain", "experience", "technology", "farming", "community", "infrastructure", "impact"]}}) { edges{ node{ title } } } }