I'm experiencing an issue when making a call to query a database (v1/databases/{database_id}/query
) that has a Relation
property that links to another database.
If there is a row in the database being queried that has more than 24 relationships, then I'm seeing that only the first 24 are being returned (via the API, in the UX everything works fine). For example:
...
"properties": {
"{database_linked_name}": {
"id": "%5C%60S%3C",
"type": "relation",
"relation": [
{
"id": "zzz"
},
{
"id": "yyy"
},
{
"id": "xxx"
},
...
...
only first 24
]
}
Do I need some kind of pagination logic to get the remaining items? I couldn't find anything related to this in the API.
Thanks