@graffiti-garden/wrapper-synchronize
    Preparing search index...

    Interface GraffitiObjectStreamTombstoneInternal

    A result from a GraffitiObjectStream that indicated an object has been deleted since the original stream was run. Only sparse metadata about the deleted object is returned to respect the deleting actor's privacy.

    interface GraffitiObjectStreamTombstone {
        error?: undefined;
        object: { url: string };
        tombstone: true;
    }
    Index

    Properties

    error?: undefined

    Empty property for compatibility with GraffitiObjectStreamError

    object: { url: string }

    Sparse metadata about the deleted object. The full object is not returned to respect an actor's privacy.

    Type Declaration

    • url: string

      The url of the deleted object.

    tombstone: true

    Use this property to differentiate a tombstone from a GraffitiObjectStreamEntry.