Skip to content

Commit 875d35a

Browse files
authored
fixed forward example
1 parent dad8070 commit 875d35a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

graph/patterns/operations.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,12 @@ HTTP/1.1 202 Accepted
7171
"request-id": "8b53016f-cc2b-4d9f-9818-bd6f0a5e3cd0"
7272
```
7373

74-
`forward` operation is modeled as an asynchronous action bound to the Graph `event` entity type because the operation represents a complex business logic processed on the server side.
74+
`forward` operation is modeled as an asynchronous action bound to the Graph `message` entity type because the operation represents a complex business logic processed on the server side.
7575
```
76-
<Action Name="forward" IsBound="true" >
77-
<Parameter Name="bindingParameter" Type="graph.event" />
76+
<Action Name="forward" IsBound="true">
77+
<Parameter Name="bindingParameter" Type="graph.message" />
7878
<Parameter Name="ToRecipients" Type="Collection(graph.recipient)" />
79+
<Parameter Name="Message" Type="graph.message" />
7980
<Parameter Name="Comment" Type="Edm.String" Unicode="false" />
8081
</Action>
8182
```
@@ -145,4 +146,4 @@ Content-Length: 205
145146
<Parameter Name="period" Type="Edm.String" Nullable="false" Unicode="false" />
146147
<ReturnType Type="Edm.Stream" Nullable="false" />
147148
</Function>
148-
```
149+
```

0 commit comments

Comments
 (0)