Skip to content

Commit 6ea3d09

Browse files
MIchaelMainerMicrosoft Graph DevX Tooling
andauthored
Updating examples (#3398)
Co-authored-by: Microsoft Graph DevX Tooling <[email protected]>
1 parent 7fec312 commit 6ea3d09

File tree

25 files changed

+201
-16
lines changed

25 files changed

+201
-16
lines changed
Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +0,0 @@
1-
### Example
2-
3-
```powershell
4-
5-
Import-Module Microsoft.Graph.Beta.Applications
6-
7-
Get-MgBetaServicePrincipalSynchronizationTemplate -ServicePrincipalId $servicePrincipalId
8-
9-
```
10-
This example shows how to use the Get-MgBetaServicePrincipalSynchronizationTemplate Cmdlet.
11-
Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,22 @@
1-
### Example 1: Code snippet
1+
### Example 1: Get a list of reading assignment submissions from the last 24 hours
22

33
```powershell
44
55
Import-Module Microsoft.Graph.Beta.Education
66
7-
Get-MgBetaEducationReportReadingAssignmentSubmission -Filter "submitDateTime gt 2023-10-10T00:00:00.000Z"
7+
Get-MgBetaEducationReportReadingAssignmentSubmission
88
99
```
10-
This example shows how to use the Get-MgBetaEducationReportReadingAssignmentSubmission Cmdlet.
10+
This example will get a list of reading assignment submissions from the last 24 hours
11+
12+
### Example 2: Get a list of the reading assignment submissions for a specific date using $filter
13+
14+
```powershell
15+
16+
Import-Module Microsoft.Graph.Beta.Education
17+
18+
Get-MgBetaEducationReportReadingAssignmentSubmission -Filter "submissionDateTime gt 2023-10-10T00:00:00.000Z and submissionDateTime lt 2023-10-11T00:00:00Z"
19+
20+
```
21+
This example will get a list of the reading assignment submissions for a specific date using $filter
1122

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
### Example 1: Get a list of the Reading Coach passages from the last 24 hours
2+
3+
```powershell
4+
5+
Import-Module Microsoft.Graph.Beta.Education
6+
7+
Get-MgBetaEducationReportReadingCoachPassage
8+
9+
```
10+
This example will get a list of the reading coach passages from the last 24 hours
11+
12+
### Example 2: Get a list of the Reading Coach passages for a specific date using $filter
13+
14+
```powershell
15+
16+
Import-Module Microsoft.Graph.Beta.Education
17+
18+
Get-MgBetaEducationReportReadingCoachPassage -Filter "practicedAtDateTime gt 2025-06-22T00:00:00Z and practicedAtDateTime lt 2025-06-23T00:00:00Z"
19+
20+
```
21+
This example will get a list of the reading coach passages for a specific date using $filter
22+

src/Files/beta/examples/Get-MgBetaDriveItemSubscriptionVapidPublicKey.md

Whitespace-only changes.

src/Files/beta/examples/Get-MgBetaDriveListSubscriptionVapidPublicKey.md

Whitespace-only changes.

src/Files/beta/examples/Get-MgBetaDriveRootSubscriptionVapidPublicKey.md

Whitespace-only changes.

src/Files/beta/examples/Get-MgBetaGroupDriveItemSubscriptionVapidPublicKey.md

Whitespace-only changes.

src/Files/beta/examples/Get-MgBetaGroupDriveListSubscriptionVapidPublicKey.md

Whitespace-only changes.

src/Files/beta/examples/Get-MgBetaGroupDriveRootSubscriptionVapidPublicKey.md

Whitespace-only changes.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
### Example 1: Code snippet
2+
3+
```powershell
4+
5+
Import-Module Microsoft.Graph.Beta.Identity.DirectoryManagement
6+
7+
Get-MgBetaAdminPeoplePhotoUpdateSetting
8+
9+
```
10+
This example shows how to use the Get-MgBetaAdminPeoplePhotoUpdateSetting Cmdlet.
11+

0 commit comments

Comments
 (0)