Documentation ¶
Index ¶
Constants ¶
View Source
const ADocument = `mutation A ($input: UserInput!) {
user(input: $input) {
id
profile {
id
}
}
}
`
Variables ¶
View Source
var DocumentOperationNames = map[string]string{ ADocument: "A", }
Functions ¶
This section is empty.
Types ¶
type A_User ¶
type A_User struct { ID string "json:\"id\" graphql:\"id\"" Profile *A_User_Profile "json:\"profile\" graphql:\"profile\"" }
func (*A_User) GetProfile ¶ added in v0.28.0
func (t *A_User) GetProfile() *A_User_Profile
type A_User_Profile ¶ added in v0.28.0
type A_User_Profile struct {
ID string "json:\"id\" graphql:\"id\""
}
func (*A_User_Profile) GetID ¶ added in v0.28.0
func (t *A_User_Profile) GetID() string
Click to show internal directories.
Click to hide internal directories.