Clarify object type documentation
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.
This commit is contained in:
@@ -6,6 +6,9 @@ import (
|
||||
"github.com/Khan/genqlient/graphql"
|
||||
)
|
||||
|
||||
// QueryWithEnumsOtherUser includes the requested fields of the GraphQL type User.
|
||||
// The GraphQL type's documentation follows.
|
||||
//
|
||||
// A User is a user!
|
||||
type QueryWithEnumsOtherUser struct {
|
||||
Roles []Role `json:"roles"`
|
||||
@@ -25,6 +28,9 @@ type QueryWithEnumsResponse struct {
|
||||
OtherUser QueryWithEnumsOtherUser `json:"otherUser"`
|
||||
}
|
||||
|
||||
// QueryWithEnumsUser includes the requested fields of the GraphQL type User.
|
||||
// The GraphQL type's documentation follows.
|
||||
//
|
||||
// A User is a user!
|
||||
type QueryWithEnumsUser struct {
|
||||
Roles []Role `json:"roles"`
|
||||
|
||||
Reference in New Issue
Block a user