// Code generated by github.com/99designs/gqlgen, DO NOT EDIT. package generated type Hello interface { IsEntity() IsHello() GetID() string GetTitle() string } type Query struct { } type World struct { ID string `json:"id"` Title string `json:"title"` } func (World) IsHello() {} func (this World) GetID() string { return this.ID } func (this World) GetTitle() string { return this.Title } func (World) IsEntity() {}