Interface LookupValue

interface LookupValue {
    collectionPath?: string;
    query: Record<string, any>;
    createIfNotFound?: boolean;
    create?: {
        fields: any;
    };
}

Properties

collectionPath?: string
query: Record<string, any>
createIfNotFound?: boolean
create?: {
    fields: any;
}