Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix table formatting for Grouping Functions #1906

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
7 changes: 2 additions & 5 deletions docs/sensorthingsapi/requestingData/STA-Filtering.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,11 +200,8 @@ Clients can use `any()` to search in related entity sets and `in` to search in p

| Function | Description & Example |
| --- | --- |
| `in` <br/> bool | Returns true if the item on the left is in the array on the right.<br/>
`properties/countryCode in ('IT','NL')`<br/>
`'myTag' in properties/tags` |
| `relatedSet/any(x: <predicate>)` | Returns true if any of the Entities in the set match the predicate.<br>
`Datastreams/any(d: d/ObservedProperty/name eq 'NO2')`|
| `in` <br/> bool | Returns true if the item on the left is in the array on the right. <br/> `properties/countryCode in ('IT','NL')` <br/> `'myTag' in properties/tags` |
| `relatedSet/any(x: <predicate>)` | Returns true if any of the Entities in the set match the predicate. <br/> `Datastreams/any(d: d/ObservedProperty/name eq 'NO2')`|


Give me all Things that have both Datastreams that measure NO2 and Datastreams that measure O3:
Expand Down