10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8410b67 commit bd1b86cCopy full SHA for bd1b86c
docs/filter-sort.md
@@ -165,6 +165,9 @@ workbooks = workbooks.filter(project_name=project_name)
165
# multiple filters can be added in a single line
166
workbooks = workbooks.filter(project_name=project_name, owner_name=owner_name, size__gte=1000)
167
168
+# Multiple filters can be added through chaining.
169
+workbooks = workbooks.filter(project_name=project_name).filter(owner_name=owner_name).filter(size__gte=1000)
170
+
171
# Find all views in a project, with a specific tag
172
views = server.views.filter(project_name=project_name, tags="stale")
173
0 commit comments