How to query and filter more than one record/post type in a single query

Hello @maikueo welcome! :slight_smile:

Currently we donā€™t have the Meta fields option that youā€™ve linked.

What I would do in your case is something like this:

landings: allLandingPages(filter: { slug: { eq: "bike" } }) {
  title
}
pages: allPages(filter: { slug: { eq: "bike" } }) {
  title
}

and similarly on the category search, except you need to get the category ID first. We cannot do ā€œdeep filteringā€ right now and thereā€™s a feature request for that. Please vote that or comment if you have more ideas.