# ResolutionCallsMap interface · @imqueue/graphql-dependency

Source: https://imqueue.org/api/graphql-dependency/latest/graphql-dependency.resolutioncallsmap/
Published: 2026-07-31
Author: @imqueue maintainers (https://github.com/imqueue)
Package: @imqueue/graphql-dependency 3.1.0 — generated reference, not hand-written

The loader and initializer calls already made during a request, keyed by a hash of the call's signature.

**Signature:**

```typescript
export interface ResolutionCallsMap 
```

## Remarks

This is what stops two requirements that reduce to the same lookup from costing two round trips: the second finds the first one's entry and reuses it. The hash covers the type, which of the two kinds of call it was, and the arguments.

The stored value is the call's own result — an id-keyed map of loaded objects for a loader, or the initializer's result map. This was declared `boolean` in earlier releases, which described the truthiness test at the read site rather than what is actually kept.

