Skip to content

Commit f96bf2b

Browse files
authored
Merge pull request MicrosoftDocs#255 from msewaweru/freshness-navigating-article
Freshness work for the navigating the SDK article
2 parents 1b556a1 + 7bbcacb commit f96bf2b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

microsoftgraph/docs-conceptual/navigating.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: "The Microsoft Graph PowerShell SDK contains a large number of comm
55
author: jasonjoh
66
manager: CelesteDG
77
ms.topic: conceptual
8-
ms.date: 04/07/2022
8+
ms.date: 04/25/2023
99
ms.author: jasonjoh
1010
---
1111

@@ -39,7 +39,7 @@ Let's look at some examples. The [getSchedule](/graph/api/calendar-getschedule?v
3939

4040
### Command nouns
4141

42-
By now you may have noticed that all nouns in the SDK's commands start with `Mg`. This prefix helps to avoid naming conflicts with other PowerShell modules. With that in mind, it should make sense that commands like `Get-MgUser` are used to get a user. And following PowerShell convention, even though the noun is singular, those same commands can return multiple results if no specific instance is requested.
42+
By now you may have noticed that all nouns in the SDK's commands start with `Mg`. This prefix helps to avoid naming conflicts with other PowerShell modules. With that in mind, it should make sense that a command like `Get-MgUser` is used to get a user. Following PowerShell convention, even though the noun is singular, those same commands can return multiple results if no specific instance is requested.
4343

4444
But what about commands like `Get-MgUserMessage` or `Get-MgUserMailFolderMessage`? Both of these commands get a [message](/graph/api/resources/message?view=graph-rest-1.0&preserve-view=true) object, so why not `Get-MgMessage`? The answer comes from the [get message API](/graph/api/message-get?view=graph-rest-1.0&preserve-view=true).
4545

@@ -54,7 +54,7 @@ The paths match to the nouns. For the first form, you start with `users`, then `
5454

5555
Another way of looking at this command is asking what owns or contains what. The user owns mail folders, and mail folders contain messages. Add the prefix and you get `Get-MgUserMailFolderMessage`.
5656

57-
Use [Using Find-MgGraphCommand cmdlet](find-mg-graph-command.md) to discover which API path a command calls by providing a URI or a command name.
57+
Use [Find-MgGraphCommand](find-mg-graph-command.md) to discover which API path a command calls by providing a URI or a command name.
5858

5959
### Listing parameters
6060

0 commit comments

Comments
 (0)