useImmediateIntrospection

Package nameWeekly DownloadsVersionLicenseUpdated
@envelop/coreDownloadsVersionLicenseOct 11th, 2022

Installation

yarn add @envelop/core

useLogger

Logs parameters and information about the execution phases. You can easily plug your custom logger.

import { envelop, useLogger } from '@envelop/core'
import { buildSchema } from 'graphql'
 
const getEnveloped = envelop({
  plugins: [
    useLogger({
      logFn: (eventName, args) => {
        // Event could be `execute-start` / `execute-end` / `subscribe-start` / `subscribe-end`
        // `args` will include the arguments passed to execute/subscribe (in case of "start" event) and additional result in case of "end" event.
      }
    })
    // ... other plugins ...
  ]
})