Hi everyone,
I'm working with the perform_hierarchy_select
 endpoint in the FSM OData API and trying to limit the number of records returned.Â
This is the code I’m trying to use:
Â
{
 "parameters": {
   "query": {
     "hierarchy_select": {
       "attrs": {
         "attr": r
           "task.task_id",
           "task.task_status"
         ]
       },
       "primary_table": "task",
       "from": {
         "table": "task"]
       },
       "max_rows": 15
     }
   }
 }
}
Â