@alex58407 In the filter conditions in your query, make sure you use the Field Key and not the Field name:
Instead of this:
.eq(“Title”, “Count”)
You want this:
.eq(“title”, “Count”)
@alex58407 In the filter conditions in your query, make sure you use the Field Key and not the Field name: