kysely
    Preparing search index...

    Interface OperatorNode

    interface OperatorNode {
        kind: "OperatorNode";
        operator:
            | "match"
            | "is"
            | "="
            | "=="
            | "!="
            | "<>"
            | ">"
            | ">="
            | "<"
            | "<="
            | "in"
            | "not in"
            | "is not"
            | "like"
            | "not like"
            | "ilike"
            | "not ilike"
            | "@>"
            | "<@"
            | "^@"
            | "&&"
            | "?"
            | "?&"
            | "?|"
            | "!<"
            | "!>"
            | "<=>"
            | "!~"
            | "~"
            | "~*"
            | "!~*"
            | "@@"
            | "@@@"
            | "!!"
            | "<->"
            | "regexp"
            | "is distinct from"
            | "is not distinct from"
            | "+"
            | "-"
            | "*"
            | "/"
            | "%"
            | "^"
            | "&"
            | "|"
            | "#"
            | "<<"
            | ">>"
            | "->"
            | "->>"
            | "||"
            | "exists"
            | "not exists"
            | "not"
            | "between"
            | "between symmetric";
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    kind: "OperatorNode"
    operator:
        | "match"
        | "is"
        | "="
        | "=="
        | "!="
        | "<>"
        | ">"
        | ">="
        | "<"
        | "<="
        | "in"
        | "not in"
        | "is not"
        | "like"
        | "not like"
        | "ilike"
        | "not ilike"
        | "@>"
        | "<@"
        | "^@"
        | "&&"
        | "?"
        | "?&"
        | "?|"
        | "!<"
        | "!>"
        | "<=>"
        | "!~"
        | "~"
        | "~*"
        | "!~*"
        | "@@"
        | "@@@"
        | "!!"
        | "<->"
        | "regexp"
        | "is distinct from"
        | "is not distinct from"
        | "+"
        | "-"
        | "*"
        | "/"
        | "%"
        | "^"
        | "&"
        | "|"
        | "#"
        | "<<"
        | ">>"
        | "->"
        | "->>"
        | "||"
        | "exists"
        | "not exists"
        | "not"
        | "between"
        | "between symmetric"