You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sitling/users/graph/model/models_gen.go

17 lines
257 B
Go

// Code generated by github.com/99designs/gqlgen, DO NOT EDIT.
package model
type Pet struct {
ID string `json:"id"`
Owners []*User `json:"owners"`
}
func (Pet) IsEntity() {}
type User struct {
ID string `json:"id"`
}
func (User) IsEntity() {}