You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/graphql-kotlin-client/src/main/kotlin/com/expediagroup/graphql/client/types/GraphQLClientRequest.kt
+5-2
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2021 Expedia, Inc
2
+
* Copyright 2023 Expedia, Inc
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -24,11 +24,14 @@ import kotlin.reflect.KClass
24
24
* @see [GraphQL Over HTTP](https://graphql.org/learn/serving-over-http/#post-request) for additional details
25
25
*/
26
26
interfaceGraphQLClientRequest<T:Any> {
27
-
val query:String
27
+
val query:String?
28
+
get() =null
28
29
val operationName:String?
29
30
get() =null
30
31
val variables:Any?
31
32
get() =null
33
+
val extensions:Map<String, Any>?
34
+
get() =null
32
35
33
36
/**
34
37
* Parameterized type of a corresponding GraphQLResponse.
Copy file name to clipboardExpand all lines: clients/graphql-kotlin-ktor-client/src/main/kotlin/com/expediagroup/graphql/client/ktor/GraphQLKtorClient.kt
+91-8
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2022 Expedia, Inc
2
+
* Copyright 2023 Expedia, Inc
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
0 commit comments