PgCacheChannel type

One registered dependency of a cached method: the method to invalidate, and an optional filter narrowing which changes should trigger it.

Position 0 is the decorated method name; position 1 is the filter, or undefined to invalidate on every change to the table.

Signature:

export type PgCacheChannel = [
    string,
    // called method name
    ChannelFilter | undefined
];

References: ChannelFilter

Read this page as plain markdown — no HTML, no navigation. For pasting into an LLM, or for an agent to fetch.