I am accessing a GraphQL API that returns some data which has the type "array of tuples" (specifically [string, {min: number, max: number}][] in typescript), but I am unable to find a way to formulate this with go structs and this package. Is there a way of fetching what is equivalent to tuples using this package?
I am accessing a GraphQL API that returns some data which has the type "array of tuples" (specifically
[string, {min: number, max: number}][]
in typescript), but I am unable to find a way to formulate this with go structs and this package. Is there a way of fetching what is equivalent to tuples using this package?