Hi, first I would like to thank you for the repository
I have a code similar to this, I'm using spring boot with kotlin and the graphql kotlin spring server library:
@Component
class ProfileQuery(private val profileDao: ProfileDao) : Query {
fun profile(env: DataFetchingEnvironment): List<Profile> {
return profileDao.getAll()
}
}
I would like to know how I can retrieve the String value from the graphql query, for example:
query {
profile {
id
name
}
}