バケット内のすべてのタスクを取得するときに説明を取得するために、タスクの詳細を抽出しようとしています。いくつかのクエリパラメータを試しました。 $expand=details
では、応答に余分なノードがあることがわかりますが、それは常にnull
です。これは、私が提供するすべての展開クエリパラメータに当てはまります。Microsoft Planner - 詳細をNullに戻す
/v1.0/planner/buckets/{BucketId}/tasks?$expand=details
を、私は同じ結果と同様/beta/
エンドポイントでこれをしようとしました:ここ
は私がしようとしていますURLです。私は受け付けており、結果については以下を参照:詳細は、結果という
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#Collection(microsoft.graph.plannerTask)",
"@odata.count": 1,
"value": [{
"@odata.etag": "***"
",
"createdBy": {
"user": {
"displayName": null,
"id": "***"
}
},
"planId": "***",
"bucketId": "***",
"title": "Name",
"orderHint": "***",
"assigneePriority": "***",
"percentComplete": 0,
"startDateTime": "2017-09-15T12:00:00Z",
"createdDateTime": "2017-09-15T23:33:10.905638Z",
"dueDateTime": null,
"hasDescription": true,
"previewType": "description",
"completedDateTime": null,
"completedBy": null,
"referenceCount": 0,
"checklistItemCount": 0,
"activeChecklistItemCount": 0,
"appliedCategories": {
"category2": true
},
"assignments": {
"***": {
"@odata.type": "#microsoft.graph.plannerAssignment",
"assignedBy": {
"user": {
"displayName": null,
"id": "***"
}
},
"assignedDateTime": "2017-09-15T23:33:10.905Z",
"orderHint": ""
}
},
"conversationThreadId": null,
"id": "LeURQ5hVvU2tAP7fbbtaiWUANHup",
"details": null
}],
}
お知らせがnullである、しかし、この作業は、いくつかの詳細を持っている必要がありますので、説明を持っています。複数の呼び出しをAPIに戻さずに、タスクの詳細を抽出するにはどうすればよいですか?