0

Does anyone have the format for a filter on a Notion rollup property? I can’t get the structure right. I’m filtering a Show Original rollup of a Select property here and this isn’t working -

{
    "filter": {
        "property": "Status",
        "rollup": {
            {
                "any": {
                    "select": {
                        "name": {
                            "contains": "Active"
                        }
                    }
                }
            }
        }
    }
}
Alex S
  • 190
  • 3
  • 15

1 Answers1

0

The correct format was -

{
    "filter": {
        "property": "Status",
        "rollup": {
            "any": {
                "select": {
                    "equals": "Active"
                }
            }
        }
    }
}
Alex S
  • 190
  • 3
  • 15