Open koote opened 5 months ago
Is there a way to extend the support to types like scalar JSON?
https://github.com/hasura/go-graphql-client?tab=readme-ov-file#custom-scalar-tag
Basically, you need to add scalar:"true" tag. The library considers that field as a scalar and decodes it with json.Unmarshal
scalar:"true"
json.Unmarshal
Is there a way to extend the support to types like scalar JSON?