Skip to content

@graphql-hive/[email protected]

Compare
Choose a tag to compare
@theguild-bot theguild-bot released this 02 Aug 09:21
· 648 commits to main since this release
e22512b

Minor Changes

  • #5234
    e6dc5c9
    Thanks @n1ru4l! - Better HTTP info, error and debug logging.

    For the supergraph manager, pass a console instance as the logger property.

    import { createSupergraphManager } from '@graphql-hive/apollo'
    
    const manager = createSupergraphManager({
      ...otherOptions,
      logger: console
    })

    For the supergraph SDL fetcher pass a console instance as the logger property.

    import { createSupergraphSDLFetcher } from '@graphql-hive/apollo'
    
    const manager = createSupergraphSDLFetcher({
      ...otherOptions,
      logger: console
    })
  • #5234
    e6dc5c9
    Thanks @n1ru4l! - Improved logging output of HTTP requests and
    retires.

Patch Changes