Skip to content

Commit 742b49f

Browse files
authored
open class KtorGraphQLRequestParser (#1856)
Added open modifier for class KtorGraphQLRequestParser to support custom logic for request parser
1 parent 14787d8 commit 742b49f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: servers/graphql-kotlin-ktor-server/src/main/kotlin/com/expediagroup/graphql/server/ktor/KtorGraphQLRequestParser.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ internal const val REQUEST_PARAM_VARIABLES = "variables"
3434
/**
3535
* GraphQL Ktor [ApplicationRequest] parser.
3636
*/
37-
class KtorGraphQLRequestParser(
37+
open class KtorGraphQLRequestParser(
3838
private val mapper: ObjectMapper
3939
) : GraphQLRequestParser<ApplicationRequest> {
4040

0 commit comments

Comments
 (0)