UNPKG

@graphql-yoga/plugin-disable-introspection

Version:

Disable Introspection plugin for GraphQL Yoga.

7 lines (6 loc) 270 B
import type { Plugin, PromiseOrValue } from 'graphql-yoga'; type UseDisableIntrospectionArgs = { isDisabled?: (request: Request) => PromiseOrValue<boolean>; }; export declare const useDisableIntrospection: (props?: UseDisableIntrospectionArgs) => Plugin; export {};