apollographql / apollo-kotlin-execution

GraphQL execution algorithms
https://apollographql.github.io/apollo-kotlin-execution/
MIT License
3 stars 2 forks source link

Fail gracefully if both a property and a function have the same name #31

Closed martinbonnin closed 1 week ago

martinbonnin commented 1 week ago

This is valid in Kotlin but cannot be translated to GraphQL

class Toto {
  val a = ""
  fun a() = ""
}