@patternmeshjs/core
    Preparing search index...

    Type Alias HasManyThroughDecl

    type HasManyThroughDecl = {
        alias: string;
        kind: "hasManyThrough";
        listPattern: string;
        mapAdd?: (input: Record<string, unknown>) => Record<string, unknown>;
        mapTargetKey: (
            throughItem: Record<string, unknown>,
        ) => Record<string, unknown>;
        root: string;
        target: string;
        through: string;
    }
    Index

    Properties

    alias: string
    kind: "hasManyThrough"
    listPattern: string
    mapAdd?: (input: Record<string, unknown>) => Record<string, unknown>
    mapTargetKey: (throughItem: Record<string, unknown>) => Record<string, unknown>
    root: string
    target: string
    through: string