INPUT_OBJECT

ApplicationFilter

link GraphQL Schema definition

1input ApplicationFilter {
4
2# Status of an aplication to filter by
3status: ApplicationStatus
7
5# Name of application to filter by
6name: String
10
8# Supply the type of string match to apply.
9nameMatch: StringMatch
13
11# Filter applications by public status
12isPublic: Boolean
16
14# Provide a list of entity tags to filter by
15entityTags: [EntityTagFilter!]
19
17# Filter by date/time field
18dateTimeFilter: [ApplicationDateTimeFilter!]
27
20# Regex filter by application URL. Passed value is compared with application_url ~
21# APP_URL.
22# Recommended parameter format is "$DOMAIN.$TOP_LEVEL_DOMAIN" like "veritone.com"
23# skipping hypertext transfer protocol, www, trailing "/" if any
24# If passed, this filter params override "status" filter value returning "active"
25# applications only
26urlRegex: String
28}