INPUT_OBJECT
ApplicationFilter
link GraphQL Schema definition
1 input ApplicationFilter { 4 2 # Status of an aplication to filter by 3 : ApplicationStatus 7 5 # Name of application to filter by 6 : String 10 8 # Supply the type of string match to apply. 9 : StringMatch 13 11 # Filter applications by public status 12 : Boolean 16 14 # Provide a list of entity tags to filter by 15 : [EntityTagFilter!] 19 17 # Filter by date/time field 18 : [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 26 : String 28 }