@bjornharrtell/json-api
    Preparing search index...

    Interface AtomicOperation

    interface AtomicOperation {
        data?:
            | JsonApiResourceIdentifier
            | JsonApiResourceIdentifier[]
            | BaseEntity
            | null;
        op: "add"
        | "update"
        | "remove";
        ref?: JsonApiReference;
    }
    Index

    Properties

    Properties

    data?:
        | JsonApiResourceIdentifier
        | JsonApiResourceIdentifier[]
        | BaseEntity
        | null
    op: "add" | "update" | "remove"
    ref?: JsonApiReference