this.me
    Preparing search index...

    Interface OperatorCall

    What ME routing produces when a Proxy chain is invoked.

    interface OperatorCall {
        path: SemanticPath;
        expression: any;
        isRoot: boolean;
    }
    Index

    Properties

    Raw path array for the call site, including operator leaf if present.

    expression: any

    The normalized expression passed into postulate.

    • 0 args -> undefined
    • 1 arg -> that arg
    • 2+ args -> packed array
    isRoot: boolean

    When called at root path.length===0 and expression is a string that looks like a path, ME biases to GET. Operators should not override that routing.