Skip to content

Commit 598608c

Browse files
committed
updated based on comments
1 parent c9d9029 commit 598608c

File tree

1 file changed

+3
-19
lines changed

1 file changed

+3
-19
lines changed

graph/patterns/navigation-property.md

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Additionally, using the OData Expand query parameter, related entities can be tr
2626
## Issues and Considerations
2727
-------------------------
2828

29-
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.
29+
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. [Limitations of the current implementation](https://dev.azure.com/msazure/One/_wiki/wikis/Microsoft%20Graph%20Partners/354352/Cross-workload-navigations?anchor=supported-scenarios) are documented internally.
3030

3131
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

@@ -115,28 +115,12 @@ Content-Type: application/json
115115

116116
Create a new user that references an existing manager
117117
```http
118-
POST /users/{id}
118+
POST /users
119119
Content-Type: application/json
120120
121121
{
122122
"displayName": "Bob",
123-
"manager@bind": "https://graph.microsoft.com/v1.0/users/{managerId}"
124-
}
125-
126-
201 Created
127-
```
128-
129-
Create a new user and the users manager and create a relationship between the two.
130-
131-
```http
132-
POST /users/{id}
133-
Content-Type: application/json
134-
135-
{
136-
"displayName": "Jim James",
137-
"manager": {
138-
"displayName": "Bob Boyce"
139-
}
123+
"[email protected]": "https://graph.microsoft.com/v1.0/users/{managerId}"
140124
}
141125
142126
201 Created

0 commit comments

Comments
 (0)