Skip to content

Commit 8e4de48

Browse files
samuelAndalonSamuel Vazquez
andauthored
fix: graphql context plus map non null values (#2026)
### 📝 Description #2024 Co-authored-by: Samuel Vazquez <[email protected]>
1 parent d038e2e commit 8e4de48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generator/graphql-kotlin-schema-generator/src/main/kotlin/com/expediagroup/graphql/generator/extensions/GraphQLContextExtensions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ operator fun GraphQLContext.plus(graphQLContext: GraphQLContext): GraphQLContext
6262
* @param map which values will be added into [this] GraphQLContext
6363
* @return current GraphQLContext with values of [map] added
6464
*/
65-
operator fun GraphQLContext.plus(map: Map<*, Any?>): GraphQLContext =
65+
operator fun GraphQLContext.plus(map: Map<*, Any>): GraphQLContext =
6666
putAll(map)
6767

6868
/**

0 commit comments

Comments
 (0)