Skip to content

Commit

Permalink
fix: graphql context plus map non null values (#2026) (#2027)
Browse files Browse the repository at this point in the history
### 📝 Description
cherry pick
#2026

Co-authored-by: Samuel Vazquez <samvazquez@expediagroup.com>
  • Loading branch information
samuelAndalon and Samuel Vazquez committed Aug 7, 2024
1 parent c7e23e0 commit 2391e2f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ operator fun GraphQLContext.plus(graphQLContext: GraphQLContext): GraphQLContext
* @param map which values will be added into [this] GraphQLContext
* @return current GraphQLContext with values of [map] added
*/
operator fun GraphQLContext.plus(map: Map<*, Any?>): GraphQLContext =
operator fun GraphQLContext.plus(map: Map<*, Any>): GraphQLContext =
putAll(map)

/**
Expand Down

0 comments on commit 2391e2f

Please sign in to comment.