prorm API Reference
    Preparing search index...

    Interface NodeMatchSpec

    Options for a node find/match.

    interface NodeMatchSpec {
        label: string;
        where?: WhereOptions;
        attributes?: string[] | { include?: string[]; exclude?: string[] };
        order?: string[] | GraphOrderTerm[];
        limit?: string | number;
        offset?: string | number;
        include?: GraphTraversalStep[];
        count?: boolean;
        distinct?: boolean;
    }
    Index
    label: string
    where?: WhereOptions
    attributes?: string[] | { include?: string[]; exclude?: string[] }
    order?: string[] | GraphOrderTerm[]
    limit?: string | number
    offset?: string | number
    include?: GraphTraversalStep[]

    Associations to co-fetch as graph walks.

    count?: boolean

    Return only a count.

    distinct?: boolean

    DISTINCT results.