Skip to content

Commit c9d9029

Browse files
committed
Fixed examples
1 parent 100d916 commit c9d9029

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

graph/patterns/navigation-property.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ Additionally, using the OData Expand query parameter, related entities can be tr
2828

2929
In the current Microsoft Graph implementation, there are some limitations on the use of navigation properties that cross between backend services. These limitations are being eliminated over time, but it will be necessary to ensure support for any particular scenario.
3030

31-
Navigation properties defined within an entity are not returned when retreiving the representation of an entity unless explicity desired by a service.
31+
Navigation properties defined within an entity are not returned by default when retreiving the representation of an entity unless explicity desired by a service.
3232

33-
Implementing support for accessing the "$ref" of a navigation property allows a caller to return just the URL of related resource. e.g. `/user/23/manager/$ref`. This is useful when a client wishes to identity the related resource but doesn't need all of its properties.
33+
Implementing support for accessing the "$ref" of a navigation property allows a caller to return just the URL of related resource. e.g. `/user/23/manager/$ref`. This is useful when a client wishes to identify the related resource but doesn't need all of its properties.
3434

3535
## When to Use this Pattern
3636
------------------------
@@ -152,7 +152,7 @@ Content-Type: application/json
152152
153153
{
154154
"displayName": "Bob",
155-
"manager@bind": "https://graph.microsoft.com/v1.0/users/{managerId}"
155+
"manager@odata.bind": "https://graph.microsoft.com/v1.0/users/{managerId}"
156156
}
157157
158158
204 No Content

0 commit comments

Comments
 (0)