Returns the number of records in a collection that match a field-value filter. Omit the filter to count all records in the collection.
Free
Set these inside the intent when you run it.
Name of the collection to count records in.
Filter expression to count only matching records; omit to count all.
An integer count of records matching the filter.
Run this sub-skill directly: pin it with operation and pass its inputs in the intent. (Omit operation and the Tables skill will route from your intent instead.)
curl -X POST "https://skill.askfaro.com/skills/tables/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"operation":"count","collection":"tasks","where":"{\"status\": \"pending\"}"}}'Example requests