IncrementalEntityEventResult
Home > @backstage/plugin-catalog-backend-module-incremental-ingestion
> IncrementalEntityEventResult
An object returned by event handler to indicate whether to ignore the event or to apply a delta in response to the event.
Signature:
export type IncrementalEntityEventResult = {
type: 'ignored';
} | {
type: 'delta';
added: DeferredEntity[];
removed: {
entityRef: string;
}[];
};
References: DeferredEntity