Member Junction
    Preparing search index...

    Interface EntityRelationshipMetadata

    Entity relationship metadata for prompts

    interface EntityRelationshipMetadata {
        description: string;
        foreignKeyField: string;
        relatedEntity: string;
        relatedEntitySchema: string;
        relatedEntityView: string;
        type: "many-to-many" | "one-to-many" | "many-to-one";
    }
    Index

    Properties

    description: string
    foreignKeyField: string
    relatedEntity: string
    relatedEntitySchema: string
    relatedEntityView: string
    type: "many-to-many" | "one-to-many" | "many-to-one"