Cypher Builder - v2.8.0
    Preparing search index...

    Interface PartialPattern

    Partial pattern, cannot be used until connected to a node with to

    interface PartialPattern {
        and(input: undefined | Predicate): this;
        and(
            target: Variable | Property,
            params: Record<string, Variable | Property | Literal<LiteralValue>>,
        ): this;
        to(node: undefined | Variable, options?: NodePatternOptions): Pattern;
        to(nodeConfig?: NodePatternOptions): Pattern;
        where(input: undefined | Predicate): this;
        where(
            target: Variable | Property,
            params: Record<string, Variable | Property | Literal<LiteralValue>>,
        ): this;
    }

    Hierarchy

    • WithWhere
    • PatternElement
      • PartialPattern
    Index

    Methods

    Methods