Files
genqlient/generate/testdata/SimpleFragment.graphql.go
T
2020-07-15 17:38:47 -07:00

11 lines
188 B
Go

type Response struct {
User *struct {
Id string `json:"id"`
profileData
} `json:"user"`
}
type profileData struct {
Name *string `json:"name"`
Emails []string `json:"emails"`
}