Hugging Face · Arazzo Workflow
Hugging Face Dataset Filter Rows
Version 1.0.0
Confirm a dataset supports filtering, resolve its split, then apply a SQL-like filter.
Provider
Workflows
dataset-filter-rows
Apply a SQL-like filter to a dataset split after confirming filter support.
Confirms filtering is available for a dataset, resolves its first split, and runs a WHERE/ORDER BY filter against that split.
1
checkFilterSupport
isValid
Check the dataset's validity and confirm the filter feature is available before issuing a filter query.
2
resolveSplit
getSplits
Resolve the dataset's first subset and split to use as the filter target.
3
filterSplit
filterRows
Apply the SQL-like WHERE and optional ORDER BY clauses to the resolved split and return the matching rows.