Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: re-export specific things from @envelop/core #2061

Merged
merged 1 commit into from
Nov 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/thin-rings-buy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'graphql-yoga': major
---

export only specific things from `@envelop/core`
24 changes: 23 additions & 1 deletion packages/graphql-yoga/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,29 @@ export * from './types.js'
export * from './logger.js'
export * from './server.js'

export * from '@envelop/core'
export {
// useful for anyone creating a new envelop instance
envelop,
// Default plugins
useEnvelop,
useLogger,
useExtendContext,
usePayloadFormatter,
// useful helpers
isIntrospectionOperationString,
makeSubscribe,
mapAsyncIterator,
makeExecute,
handleStreamOrSingleExecutionResult,
finalAsyncIterator,
errorAsyncIterator,
isAsyncIterable,
// Handy type utils
Maybe,
Optional,
PromiseOrValue,
Spread,
} from '@envelop/core'
export type { CORSOptions } from './plugins/useCORS.js'
export type { GraphiQLOptions } from './plugins/useGraphiQL.js'
export type { Plugin } from './plugins/types.js'
Expand Down