This commit is contained in:
21
node_modules/graphql/utilities/findDeprecatedUsages.d.ts
generated
vendored
Normal file
21
node_modules/graphql/utilities/findDeprecatedUsages.d.ts
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
import { GraphQLError } from '../error/GraphQLError';
|
||||
import { DocumentNode } from '../language/ast';
|
||||
import { GraphQLSchema } from '../type/schema';
|
||||
|
||||
/**
|
||||
* A validation rule which reports deprecated usages.
|
||||
*
|
||||
* Returns a list of GraphQLError instances describing each deprecated use.
|
||||
*
|
||||
* @deprecated Please use `validate` with `NoDeprecatedCustomRule` instead:
|
||||
*
|
||||
* ```
|
||||
* import { validate, NoDeprecatedCustomRule } from 'graphql'
|
||||
*
|
||||
* const errors = validate(schema, document, [NoDeprecatedCustomRule])
|
||||
* ```
|
||||
*/
|
||||
export function findDeprecatedUsages(
|
||||
schema: GraphQLSchema,
|
||||
ast: DocumentNode,
|
||||
): ReadonlyArray<GraphQLError>;
|
||||
Reference in New Issue
Block a user