ResolutionCache type

Everything one load() call has resolved, one entry per participating type.

Signature:

export type ResolutionCache = Map<GraphQLObjectType, ResolutionCacheData>;

References: ResolutionCacheData

Remarks

Created per request and discarded when load() returns — nothing is shared between requests, so no request can be served another's stale data. It is keyed by the GraphQLObjectType object itself, which is also how dependency descriptions are registered.

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