ContextEvents
- Last UpdatedJan 11, 2021
- 1 minute read
This Azure function custom query returns the context events. The custom query expression supports the following parameters:
|
Parameter Name |
Parameter Choice |
Example |
Description |
|
QueryName |
Required |
ContextEvents |
Azure function query name |
|
SelectColumn |
Required |
["*"] |
Option to pick required properties from MES |
|
Filter |
Required |
"endswith (myFilter,'')" |
Expression to apply filter on the Context events. |
|
StartDateTime |
Optional |
"2020-07-01T00:00:00Z" |
Any valid UTC date time value. |
Sample query expression
{
"QueryName": "ContextEvents",
"SelectColumn": ["*"],
"Filter":"endswith(myfilter,'')",
"StartDateTime":"2020-07-01T00:00:00Z"
}