Skip to content

Commit d7ec059

Browse files
committed
fix
1 parent 57e5d17 commit d7ec059

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/azure-web-pubsub/reference-odata-filter.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ The filter syntax is used to filter out the connections matching the filter expr
5050
Azure Web PubSub supports below identifiers:
5151
| Identifier | Description | Note | Examples
5252
| --- | --- | -- | --
53-
| `userId` | The userId of the connection. | Case insensitive. It can be used in [string operations](#string-operations). | `userId eq 'user1'`
54-
| `connectionId` | The connectionId of the connection. | Case insensitive. It can be used in [string operations](#string-operations). | `connectionId ne '123'`
55-
| `groups` | The collection of groups the connection is currently in. | Case insensitive. It can be used in [collection operations](#string-operations). | `'group1' in groups`
53+
| `userId` | The userId of the connection. | Case insensitive. It can be used in [string operations](#supported-operations). | `userId eq 'user1'`
54+
| `connectionId` | The connectionId of the connection. | Case insensitive. It can be used in [string operations](#supported-operations). | `connectionId ne '123'`
55+
| `groups` | The collection of groups the connection is currently in. | Case insensitive. It can be used in [collection operations](#supported-operations). | `'group1' in groups`
5656

57-
Identifiers are used to refer to the property value of a connection. Azure Web PubSub supports 3 identifiers matching the property name of the connection model. and supports identifiers `userId` and `connectionId` in string operations, supports identifier `groups` in [collection operations](#collection-operations). For example, to filter out connections with userId `user1`, we specify the filter as `userId eq 'user1'`. Read through the below sections for more samples using the filter.
57+
Identifiers are used to refer to the property value of a connection. Azure Web PubSub supports 3 identifiers matching the property name of the connection model. and supports identifiers `userId` and `connectionId` in string operations, supports identifier `groups` in [collection operations](#supported-operations). For example, to filter out connections with userId `user1`, we specify the filter as `userId eq 'user1'`. Read through the below sections for more samples using the filter.
5858

5959
### Boolean expressions
6060

0 commit comments

Comments
 (0)