Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions articles/event-grid/mqtt-routing-filtering.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ If you send a non-JSON payload that is still UFT-8, it will be serialized as a J
You can use the following filter to filter all the messages that include the word “Contoso”:
```azurecli-interactive
"advancedFilters": [{
"operatorType": "`StringContains` ",
"operatorType": "StringContains",
"key": "data",
"value": Contoso
"value": "Contoso"
}]
```

Expand All @@ -82,9 +82,9 @@ You can use the following filter to filter all the messages coming from your cli

```azurecli-interactive
"advancedFilters": [{"
operatorType": "`StringContains` ",
"key": "`clienttype`",
"value": sensor
operatorType": "StringContains",
"key": "clienttype",
"value": "sensor"
}]
```

Expand Down