@graphql-mesh/serve-runtime
Version:
48 lines (47 loc) • 1.88 kB
JavaScript
import useMeshHive from '@graphql-mesh/plugin-hive';
import { useApolloUsageReport } from '@graphql-yoga/plugin-apollo-usage-report';
export function getReportingPlugin(config, configContext) {
if (config.reporting?.type === 'hive') {
return {
name: 'Hive',
plugin: useMeshHive({
...configContext,
logger: configContext.logger.child('Hive'),
...config.reporting,
experimental__persistedDocuments: config.persistedDocuments &&
'type' in config.persistedDocuments &&
config.persistedDocuments?.type === 'hive'
? {
cdn: {
endpoint: config.persistedDocuments.endpoint,
accessToken: config.persistedDocuments.token,
},
allowArbitraryDocuments: config.persistedDocuments.allowArbitraryDocuments,
}
: undefined,
}),
};
}
else if (config.reporting?.type === 'graphos' ||
(!config.reporting &&
'supergraph' in config &&
typeof config.supergraph === 'object' &&
'type' in config.supergraph &&
config.supergraph.type === 'graphos')) {
if ('supergraph' in config &&
typeof config.supergraph === 'object' &&
'type' in config.supergraph &&
config.supergraph.type === 'graphos') {
config.reporting.apiKey ||= config.supergraph.apiKey;
config.reporting.graphRef ||= config.supergraph.graphRef;
}
return {
name: 'GraphOS',
// @ts-expect-error - TODO: Fix types
plugin: useApolloUsageReport(config.reporting),
};
}
return {
plugin: {},
};
}