Craig pointed out this is a bit confusing when you don't have all the fields. Now we say so, but still include the type's description in case it's useful. Fixes #37.
49 lines
964 B
Go
49 lines
964 B
Go
package test
|
|
|
|
// Code generated by github.com/Khan/genqlient, DO NOT EDIT.
|
|
|
|
import (
|
|
"github.com/Khan/genqlient/graphql"
|
|
"github.com/me/mypkg"
|
|
)
|
|
|
|
// SimpleQueryResponse is returned by SimpleQuery on success.
|
|
type SimpleQueryResponse struct {
|
|
// user looks up a user by some stuff.
|
|
//
|
|
// See UserQueryInput for what stuff is supported.
|
|
// If query is null, returns the current user.
|
|
User SimpleQueryUser `json:"user"`
|
|
}
|
|
|
|
// SimpleQueryUser includes the requested fields of the GraphQL type User.
|
|
// The GraphQL type's documentation follows.
|
|
//
|
|
// A User is a user!
|
|
type SimpleQueryUser struct {
|
|
// id is the user's ID.
|
|
//
|
|
// It is stable, unique, and opaque, like all good IDs.
|
|
Id mypkg.ID `json:"id"`
|
|
}
|
|
|
|
func SimpleQuery(
|
|
client graphql.Client,
|
|
) (*SimpleQueryResponse, error) {
|
|
var retval SimpleQueryResponse
|
|
err := client.MakeRequest(
|
|
nil,
|
|
"SimpleQuery",
|
|
`
|
|
query SimpleQuery {
|
|
user {
|
|
id
|
|
}
|
|
}
|
|
`,
|
|
&retval,
|
|
nil,
|
|
)
|
|
return &retval, err
|
|
}
|