Details of functions that can be used in advanced searches.

interface FunctionReferenceData {
    displayName?: string;
    isList?: "false" | "true";
    supportsListAndSingleValueOperators?: "false" | "true";
    types?: string[];
    value?: string;
}

Properties

displayName?: string

The display name of the function.

isList?: "false" | "true"

Whether the function can take a list of arguments.

supportsListAndSingleValueOperators?: "false" | "true"

Whether the function supports both single and list value operators.

types?: string[]

The data types returned by the function.

value?: string

The function identifier.