ENUM

StringMatch

Used to control string matching on fields that support it

link GraphQL Schema definition

1enum StringMatch {
2
3# Match if the target string field starts with the supplied value.
4# Case-insensitive.
5startsWith
6
7# Match if the target string field ends with the supplied value.
8# Case-insensive.
9endsWith
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.
15contains
16
17# Match if the target string field exactly matches the
18# supplied value. Case-insensitive.
19exact
20}