Sporades SDK API
    Preparing search index...

    Type Alias ReferenceFieldBuilder

    Builder for a Reference() field.

    References store the row id of another Capsule table. The target table must exist in the Capsule schema.

    type ReferenceFieldBuilder = {
        kind: "Reference";
        targetTable: string;
        default(defaultValue: string | null): ReferenceFieldDefinition;
    }
    Index
    kind: "Reference"
    targetTable: string