-
-
Notifications
You must be signed in to change notification settings - Fork 52
Open
Labels
bugSomething isn't workingSomething isn't workingcurrently not supportedDue to a updated dependency, this feature is currently not supported or is not workingDue to a updated dependency, this feature is currently not supported or is not working
Description
Describe the bug
When I use Filter::rawFilter to query a Notion database on a status property type, a validation error is returned.
To Reproduce
Set the filter and send the query:
$filters = new Collection();
$filters->add(Filter::rawFilter("Status",
["status" => [Operators::EQUALS => "Ready"]]
));
$notion = new Notion($access_token)
$rows = $notion->database($id)
->filterBy($filters)
->sortBy($sortings)
->query()
->asCollection();
Expected behavior
A filtered results collection is returned.
Exceptions
Trace can be found here: https://flareapp.io/share/pPv1vqYm#F58
Additional context
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingcurrently not supportedDue to a updated dependency, this feature is currently not supported or is not workingDue to a updated dependency, this feature is currently not supported or is not working