transformers.string {susographql}R Documentation

Utility Functions for string operator selection

Description

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.

Usage

contains(value_set)

endsWith(value_set)

ncontains(value_set)

nendsWith(value_set)

nstartsWith(value_set)

startsWith(value_set)

inclu(value_set)

ninclu(value_set)

Arguments

value_set

the parameter set for the operator

Details

Also see the susoop_str selector list, which allows you, to just select the function from a named list.

Value

a list with a single named element (operator name) to be handed over to the filter.

Functions

Examples


# set filter so that the string contains "area"
contains("area")

# set filter to string ending with .shp
endsWith(".shp")


[Package susographql version 0.1.6 Index]