total rewrite to interface handling; not complete but it compiles

This commit is contained in:
Ben Kraft
2020-07-16 13:28:43 -07:00
parent af4a765a32
commit cf7136ca65
33 changed files with 712 additions and 173 deletions
+31 -6
View File
@@ -1,6 +1,31 @@
type Response struct {
User *struct {
ID string
AlsoID string
} `json:"user"`
}
package test
// Code generated by github.com/Khan/genql, DO NOT EDIT.
import (
"context"
"github.com/Khan/genql/graphql"
)
type QueryWithDoubleAliasResponse struct {
User *User `json:"user"`
}
type User struct {
ID string
AlsoID string
}
func QueryWithDoubleAlias(client *graphql.Client) (*QueryWithDoubleAliasResponse, error) {
var retval QueryWithDoubleAliasResponse
err := client.MakeRequest(context.Background(), `
query QueryWithDoubleAlias {
user {
ID: id
AlsoID: id
}
}
`, &retval, nil)
return &retval, err
}