I have rollup from one database to another and I need to have a number from that rollup in the third database. Since Notion doesn't support rollup to rollup, I've created a formula that simply refers to rollup property, and third database has a rollup to this formula property. In the UI everything works fine, values are shown as they supposed to, but when I get a page in the API that property returns null instead of number:
{
"Rollup Property": {
"id": "O%40qR",
"type": "rollup",
"rollup": {
"type": "array",
"array": [
{
"type": "formula",
"formula": {
"type": "number",
"number": null
}
}
],
"function": "show_original"
}
}
It is not an access problem - if I create a rollup to other properties, they returns just fine. What seems to be the problem?