ENUM
StringMatch
Used to control string matching on fields that support it
link GraphQL Schema definition
1 enum StringMatch { 2 3 # Match if the target string field starts with the supplied value. 4 # Case-insensitive. 5 6 7 # Match if the target string field ends with the supplied value. 8 # Case-insensive. 9 10 11 # Match if the target string field contains the supplied value 12 # anywhere in its content. Use only when strictly necessary, as 13 # startsWith and endsWith offer better performance. 14 # Case-insensitive. 15 16 17 # Match if the target string field exactly matches the 18 # supplied value. Case-insensitive. 19 20 }
link Required by
- ApplicationFilter
- Folder
- QueryQueries are used to retrieve data. If you're new to our API, try the `me` query to explore the information you have access to. Hit `ctrl-space` at any time to activate field completion hints, and mouse over a field or parameter to see its documentation.
- SourceTypeA source type represents a category of sources that share common attributes, such as "TV station" or "Real-time camera feed".