UNPKG

@wundergraph/apollo-to-cosmo-metrics

Version:

An apollo gateway plugin that exports schema usage metrics to cosmo

6 lines (5 loc) 284 B
import { type ApolloServerPlugin } from '@apollo/server'; import { type CosmoClient } from './cosmo-client.js'; export interface Context { } export declare function cosmoReportPlugin(client: CosmoClient, reportIntervalMs?: number, maxQueueSize?: number): ApolloServerPlugin<Context>;