Type Alias NLMetricsRequest

type NLMetricsRequest = {
    filter: string;
}
Index

Properties

Properties

filter: string

The advanced filtering to use for the query. Refer to RFC 7644 for the syntax.

Filter on createdAt and updatedAt fields are encouraged and support eq, ne, gt, ge, lt, le comparison operators along with and and or logical operators.

Filter on tenantId field is not supported.

co, sw and ew operators are not supported.

Examples:

appId eq 'appId1'
(appId eq 'appId1' or appId eq 'appId2')
(appId eq 'appId1' or appId eq 'appId2') and (createdAt gt '2022-08-03T00:00:00.000Z' and createdAt lt '2022-08-04T00:00:00.000Z')
(appId eq 'appId1') and (createdAt ge '2022-08-03T00:00:00.000Z')
(appId eq 'appId1') and (createdAt le '2022-08-23:59:59.000Z')
(appId eq 'appId1') and (questionId eq '12345')