Skip to content
This repository was archived by the owner on May 16, 2023. It is now read-only.

Commit 09334d6

Browse files
committed
1
1 parent 247d93b commit 09334d6

File tree

3 files changed

+28
-24
lines changed

3 files changed

+28
-24
lines changed

dist/bundle.js

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -69329,7 +69329,8 @@ exports.SampleQueries = [
6932969329
"method": "GET",
6933069330
"humanName": "my events for the next week",
6933169331
"requestUrl": "https://graph.microsoft.com/v1.0/me/calendarview?startdatetime={today}&enddatetime={next-week}",
69332-
"docLink": "https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/user_list_calendarview"
69332+
"docLink": "https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/user_list_calendarview",
69333+
"tip": "This query uses date and time parameters. Use an ISO 8601 format. For example, \"2017-04-30T19:00:00.0000000\"."
6933369334
},
6933469335
{
6933569336
"category": "Outlook Calendar",
@@ -69350,7 +69351,8 @@ exports.SampleQueries = [
6935069351
"method": "GET",
6935169352
"humanName": "all my event reminders for next week",
6935269353
"requestUrl": "https://graph.microsoft.com/v1.0/me/reminderView?startdatetime={today}&enddatetime={next-week}",
69353-
"docLink": "https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/user_reminderview"
69354+
"docLink": "https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/user_reminderview",
69355+
"tip": "This query uses date and time parameters. Use an ISO 8601 format. For example, \"2017-04-30T19:00:00.0000000\"."
6935469356
},
6935569357
{
6935669358
"category": "Outlook Calendar",
@@ -69387,7 +69389,8 @@ exports.SampleQueries = [
6938769389
"method": "GET",
6938869390
"humanName": "track changes on my events for the next week",
6938969391
"requestUrl": "https://graph.microsoft.com/beta/me/calendarView/delta?startDateTime={today}&endDateTime={next-week}",
69390-
"docLink": "https://developer.microsoft.com/en-us/graph/docs/concepts/delta_query_events"
69392+
"docLink": "https://developer.microsoft.com/en-us/graph/docs/concepts/delta_query_events",
69393+
"tip": "This query uses date and time parameters. Use an ISO 8601 format. For example, \"2017-04-30T19:00:00.0000000\"."
6939169394
},
6939269395
{
6939369396
"category": "Personal Contacts",
@@ -69436,7 +69439,7 @@ exports.SampleQueries = [
6943669439
"category": "OneDrive",
6943769440
"method": "GET",
6943869441
"humanName": "all of my excel files",
69439-
"requestUrl": "https://graph.microsoft.com/v1.0/me/drive/root/search(q='.xlsx')?select=name",
69442+
"requestUrl": "https://graph.microsoft.com/v1.0/me/drive/root/search(q='.xlsx')?select=name,id,webUrl",
6944069443
"docLink": "https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/item_search"
6944169444
},
6944269445
{
@@ -69503,23 +69506,23 @@ exports.SampleQueries = [
6950369506
"category": "Excel",
6950469507
"method": "GET",
6950569508
"humanName": "used range in worksheet",
69506-
"requestUrl": "https://graph.microsoft.com/v1.0/me/drive/items/{drive-item-id}/workbook/worksheets/('Sheet1')/usedRange",
69509+
"requestUrl": "https://graph.microsoft.com/v1.0/me/drive/items/{drive-item-id}/workbook/worksheets('Sheet1')/usedRange",
6950769510
"docLink": "https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/worksheet_usedrange",
6950869511
"tip": "This query requires a driveItem id. To find the ID of the driveItem that corresponds to an Excel Workbook, you can run: GET https://graph.microsoft.com/v1.0/me/drive/root/search(q='.xlsx')?select=name,id,webUrl."
6950969512
},
6951069513
{
6951169514
"category": "Excel",
6951269515
"method": "GET",
6951369516
"humanName": "tables in worksheet",
69514-
"requestUrl": "https://graph.microsoft.com/v1.0/me/drive/items/{drive-item-id}/workbook/worksheets/('Sheet1')/tables",
69517+
"requestUrl": "https://graph.microsoft.com/v1.0/me/drive/items/{drive-item-id}/workbook/worksheets('Sheet1')/tables",
6951569518
"docLink": "https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/worksheet_list_tables",
6951669519
"tip": "This query requires a driveItem id. To find the ID of the driveItem that corresponds to an Excel Workbook, you can run: GET https://graph.microsoft.com/v1.0/me/drive/root/search(q='.xlsx')?select=name,id,webUrl."
6951769520
},
6951869521
{
6951969522
"category": "Excel",
6952069523
"method": "GET",
6952169524
"humanName": "charts in worksheet",
69522-
"requestUrl": "https://graph.microsoft.com/v1.0/me/drive/items/{drive-item-id}/workbook/worksheets/('Sheet1')/charts",
69525+
"requestUrl": "https://graph.microsoft.com/v1.0/me/drive/items/{drive-item-id}/workbook/worksheets('Sheet1')/charts",
6952369526
"docLink": "https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/worksheet_list_charts",
6952469527
"tip": "This query requires a driveItem id. To find the ID of the driveItem that corresponds to an Excel Workbook, you can run: GET https://graph.microsoft.com/v1.0/me/drive/root/search(q='.xlsx')?select=name,id,webUrl."
6952569528
},
@@ -69636,7 +69639,7 @@ exports.SampleQueries = [
6963669639
"category": "Extensions (beta)",
6963769640
"method": "PATCH",
6963869641
"humanName": "update a group with extension data",
69639-
"requestUrl": "https://graph.microsoft.com/beta/groups",
69642+
"requestUrl": "https://graph.microsoft.com/beta/groups/{group-id}",
6964069643
"docLink": "https://developer.microsoft.com/en-us/graph/docs/api-reference/beta/api/schemaextension_post_schemaextensions",
6964169644
"postBody": "{\n \"adatumisv_courses\": {\n \"id\":\"123\",\n \"name\":\"New Managers\",\n \"type\":\"Online\"\n }\n}"
6964269645
}

0 commit comments

Comments
 (0)