Is a SharePoint checkbox (yes/no) a supported field type for Get Items for SharePoint in Flow. I have tried all of the following in the Filter Query Odata Entry in Flow
checkbox eq true
checkbox eq bool(1)
checkbox eq Yes
checkbox eq yes
checkbox eq 1
checkbox eq 'Yes'
checkbox eq 'yes'
None of these work. All give the same error with multiple retries and a status of "Bad Gateway"
I CAN get a checkbox to work fine in an if statement with the syntax below if I nest an if under a get items based upon other fields within the list. So a checkbox is suppported in the If Condition
@equals(item()?['checkbox'], true)
I even tried puttting true in as a function
checkbox eq function(true)
No luck
Thx!