I would like to get every post of "technology" category in a GraphQL query. I'm using Apollo GraphQL. So, I tried this query, but it doesn't work:
{ allPosts(where: {category.uid: "technology"}) { edges{ node{ title category { ... on category{ name } } } } } }
2.1m questions
2.1m answers
60 comments
57.0k users