File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -21,13 +21,13 @@ Reference: https://graphql.github.io/graphql-over-http/draft/#sec-Request-Parame
2121
2222### extensions
2323
24- • ` Optional ` ** extensions** : ` Record ` <` string ` , ` unknown ` \>
24+ • ` Optional ` ** extensions** : `` null `` \| ` Record ` <` string ` , ` unknown ` \>
2525
2626___
2727
2828### operationName
2929
30- • ` Optional ` ** operationName** : ` string `
30+ • ` Optional ` ** operationName** : `` null `` \| ` string `
3131
3232___
3333
3939
4040### variables
4141
42- • ` Optional ` ** variables** : ` Record ` <` string ` , ` unknown ` \>
42+ • ` Optional ` ** variables** : `` null `` \| ` Record ` <` string ` , ` unknown ` \>
Original file line number Diff line number Diff line change 1212 * @category Common
1313 */
1414export interface RequestParams {
15- operationName ?: string | undefined ;
15+ operationName ?: string | null | undefined ;
1616 query : string ;
17- variables ?: Record < string , unknown > | undefined ;
18- extensions ?: Record < string , unknown > | undefined ;
17+ variables ?: Record < string , unknown > | null | undefined ;
18+ extensions ?: Record < string , unknown > | null | undefined ;
1919}
2020
2121/**
You can’t perform that action at this time.
0 commit comments