File tree 6 files changed +1
-25
lines changed
6 files changed +1
-25
lines changed Original file line number Diff line number Diff line change @@ -345,8 +345,6 @@ export {
345
345
// Produce the GraphQL query recommended for a full schema introspection.
346
346
// Accepts optional IntrospectionOptions.
347
347
getIntrospectionQuery ,
348
- // @deprecated : use getIntrospectionQuery - will be removed in v15.
349
- introspectionQuery ,
350
348
// Gets the target Operation from a Document.
351
349
getOperationAST ,
352
350
// Gets the Type for the target Operation AST.
Original file line number Diff line number Diff line change 5
5
// Produce the GraphQL query recommended for a full schema introspection.
6
6
// Accepts optional IntrospectionOptions.
7
7
getIntrospectionQuery ,
8
- // @deprecated , use getIntrospectionQuery() - will be removed in v15.
9
- introspectionQuery ,
10
8
} from './introspectionQuery' ;
11
9
12
10
export type {
Original file line number Diff line number Diff line change @@ -105,13 +105,6 @@ export function getIntrospectionQuery(options?: IntrospectionOptions): string {
105
105
` ;
106
106
}
107
107
108
- /**
109
- * Deprecated, call getIntrospectionQuery directly.
110
- *
111
- * This function will be removed in v15
112
- */
113
- export const introspectionQuery = getIntrospectionQuery ( ) ;
114
-
115
108
export type IntrospectionQuery = { |
116
109
+ __schema : IntrospectionSchema ,
117
110
| } ;
Original file line number Diff line number Diff line change @@ -345,8 +345,6 @@ export {
345
345
// Produce the GraphQL query recommended for a full schema introspection.
346
346
// Accepts optional IntrospectionOptions.
347
347
getIntrospectionQuery ,
348
- // @deprecated : use getIntrospectionQuery - will be removed in v15.
349
- introspectionQuery ,
350
348
// Gets the target Operation from a Document.
351
349
getOperationAST ,
352
350
// Gets the Type for the target Operation AST.
Original file line number Diff line number Diff line change 1
1
// The GraphQL query recommended for a full schema introspection.
2
- export {
3
- getIntrospectionQuery ,
4
- // @deprecated , use getIntrospectionQuery() - will be removed in v15
5
- introspectionQuery ,
6
- } from './introspectionQuery' ;
2
+ export { getIntrospectionQuery } from './introspectionQuery' ;
7
3
8
4
export {
9
5
IntrospectionOptions ,
Original file line number Diff line number Diff line change @@ -9,13 +9,6 @@ export interface IntrospectionOptions {
9
9
10
10
export function getIntrospectionQuery ( options ?: IntrospectionOptions ) : string ;
11
11
12
- /**
13
- * Deprecated, call getIntrospectionQuery directly.
14
- *
15
- * This function will be removed in v15
16
- */
17
- export const introspectionQuery : string ;
18
-
19
12
export interface IntrospectionQuery {
20
13
readonly __schema : IntrospectionSchema ;
21
14
}
You can’t perform that action at this time.
0 commit comments