prorm API Reference
    Preparing search index...

    Interface CypherResult<T>

    The result of running a Cypher query: mapped plain-object records plus a summary.

    interface CypherResult<T = Record<string, unknown>> {
        records: T[];
        keys: string[];
        summary: CypherSummary;
    }

    Type Parameters

    • T = Record<string, unknown>
    Index
    records: T[]
    keys: string[]

    Field names present on each record, in order.

    summary: CypherSummary