Storyblok
Search Storyblok's Documentation
  1. Filter Queries

Filter Queries

These allow you to filter results by (a) specific field(s) of your story type.

For example, if you want to fetch all StickynoteItems for which the note field is not empty.

{
  StickynoteItems(page: 1, filter_query: { note: { is: "not_empty" } }) {
    total
    items {
      content {
        note
      }
    }
  }
}

For an overview of available filter queries, please refer to the Filter Queries section of the Content Delivery API.