'Directus Filtering multiple fields

I'm trying to filter directsus CMS data set through URL parameters. This is a sample data set. I can successfully filter data set by single parameter.

{
"data": [
{
"id": "1",
"status": "published",
"category": "Novel",
"section": "Kids"
},
{
"id": "2",
"status": "published",
"category": "Novel",
"section": "Adults"
}
]
}

/items/books?filter[category][_eq]=Novel

gives me exactly what I expected which is 1 & 2 data records. But I need to filter both "category" & "section" fields

/items/books?filter[category][_eq]=Novel&filter[section][_eq]=Adults 

For above I receive an empty data set. Why is this getting failed ? Where do I need to fix? Appreciate your support in advance. Thanks!



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source