Documentation
Gateway
Other Features
Performance/Cache
Deduplicate HTTP Requests

Deduplicate HTTP Requests

Most of the time, your Hive Gateway will receive multiple requests for the same data. This can happen when multiple clients request the same data, or when a single client sends multiple requests for the same data.

To reduce the load on your downstream services, you can deduplicate the requests. This means that if multiple requests for the same data are received at the same time, only one request will be sent to the downstream service, and the responses will be shared among the clients.

You can enable request deduplication by using the useRequestDeduplication plugin.

gateway.config.ts
import { defineConfig, useRequestDeduplication } from '@graphql-hive/gateway'
 
export const gatewayConfig = defineConfig({
  plugins: pluginCtx => [
    useRequestDeduplication({
      ...pluginCtx
    })
  ]
})