Skip to content

Commit

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

Co-authored-by: Samuel Vazquez <[email protected]>
  • Loading branch information
samuelAndalon and Samuel Vazquez committed Aug 7, 2024
1 parent d038e2e commit 8e4de48
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 8e4de48

Please sign in to comment.