Traqula
    Preparing search index...

    Algebra operation representing the VALUES pattern Has a list of variables that will be assigned. The assignments are represented as a list of object containing bindings. Each binging links the variable value to the appropriate Term for this binding. Does not take any input.

    interface Values {
        bindings: Record<string, Literal | NamedNode<string>>[];
        subType?: string;
        type: VALUES;
        variables: Variable[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    bindings: Record<string, Literal | NamedNode<string>>[]
    subType?: string
    type: VALUES
    variables: Variable[]