Skip to content

Filter Queries

Filter by (a) specific field(s) of a content type type.

In this example, all articles with a non-empty author field are retrieved.

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