odata filtering of dates or percentcomplete not working for Planner API
Anuj Kumar
0
Reputation points
GET https://graph.microsoft.com/v1.0/planner/plans/{plan-id}/tasks?$top=2 Authorization: Bearer {token}
Expected: Only 2 tasks should be returned per page. Reality: All tasks are returned without proper pagination.
Attempting Filtering GET
https://graph.microsoft.com/v1.0/planner/plans/{plan_id}/tasks?$filter=percentComplete eq 100 Authorization: Bearer {token}
Expected: Return only tasks that are completed (100% complete). Reality: All tasks are returned.
Sign in to answer