Closed grihabor closed 2 years ago
It's a followup for #20, which introduced [][2]interface{} to allow building arbitrary queries at runtime. But when we access interface{} in reflect we need to call v.Elem() to get the actual object inside. This is properly done in the pr
[][2]interface{}
interface{}
v.Elem()
@hgiasac Could you check this out please?
Thanks! Could you release it please? maybe 0.5.1
Done https://github.com/hasura/go-graphql-client/releases/tag/v0.5.1
Thank you!
It's a followup for #20, which introduced
[][2]interface{}
to allow building arbitrary queries at runtime. But when we accessinterface{}
in reflect we need to callv.Elem()
to get the actual object inside. This is properly done in the pr