File tree 1 file changed +4
-3
lines changed
tableauserverclient/server
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -164,13 +164,14 @@ def get_query_params(self):
164
164
raise NotImplementedError ()
165
165
166
166
def vf (self , name : str , value : str ) -> Self :
167
- """Apply a filter to the view for a filter that is a normal column
168
- within the view. """
167
+ """Apply a filter based on a column within the view.
168
+ Note that when filtering on a boolean type field, the only valid values are 'true' and 'false' """
169
169
self .view_filters .append ((name , value ))
170
170
return self
171
171
172
172
def parameter (self , name : str , value : str ) -> Self :
173
- """Apply a filter based on a parameter within the workbook."""
173
+ """Apply a filter based on a parameter within the workbook.
174
+ Note that when filtering on a boolean type field, the only valid values are 'true' and 'false'"""
174
175
self .view_parameters .append ((name , value ))
175
176
return self
176
177
You can’t perform that action at this time.
0 commit comments