transformers.string {susographql} | R Documentation |
Can be used in filters ("where") for operator selection. If none is selected, operator always defaults to 'eq()'. The functions bellow are valid for the corresponding inputs ComparableInt64OperationFilterInput and ComparableNullableOfInt32OperationFilterInput.
contains(value_set)
endsWith(value_set)
ncontains(value_set)
nendsWith(value_set)
nstartsWith(value_set)
startsWith(value_set)
inclu(value_set)
ninclu(value_set)
value_set |
the parameter set for the operator |
Also see the susoop_str selector list, which allows you, to just select the function from a named list.
a list with a single named element (operator name) to be handed over to the filter.
contains()
: contains
endsWith()
: ends with
ncontains()
: not contains
nendsWith()
: not ends with
nstartsWith()
: not starts with
startsWith()
: starts with
inclu()
: in
ninclu()
: not in
# set filter so that the string contains "area"
contains("area")
# set filter to string ending with .shp
endsWith(".shp")