forked from pgutkowski/KGraphQL
-
Notifications
You must be signed in to change notification settings - Fork 61
Open
Labels
enhancementNew feature or requestNew feature or request
Description
i configured a qury like so
type<FindAddonsConfig>() {
description = "wrapper object for passing configurations to findAddons"
}
query("findAddons") {
resolver { config: FindAddonsConfig ->
....
listOf<String>()
}.withArgs {
arg<FindAddonsConfig> {
name ="config"
defaultValue = FindAddonsConfig()
}
}
}
this broke graphql clients and inspection
running the inspection query manually reveals
"defaultValue": "FindAddonsConfig(gameIdList=null, categoryList=null, gameVersionList=null, idList=null, nameList=null, slugList=null, sectionList=null, statusList=null)"
in the response
my expectation was that this would be json encoded
is there a different (typesafe) overload for this i overlooked ?
i am using 0.17.7
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request