vesper icon indicating copy to clipboard operation
vesper copied to clipboard

Support for apollo-tracing and apollo-engine

Open jvbianchi opened this issue 6 years ago • 2 comments

Are there any plans to support apollo-tracing and apollo-engine?

jvbianchi avatar Apr 03 '18 11:04 jvbianchi

yeah I have that in plans

pleerock avatar Apr 03 '18 12:04 pleerock

You can pass apollo-server options to the vesper Express middleware directly if you want to enable tracing and cache-control:

    expressApp.use(
      '/graphql',
      bodyParser.json(),
      vesper(schema, {
        cacheControl: true,
        tracing: true,
      }),
    );

vfaramond avatar May 16 '18 17:05 vfaramond