You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
640 B
22 lines
640 B
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>;
|