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.
|
// Code generated by github.com/99designs/gqlgen, DO NOT EDIT.
|
|
|
|
package model
|
|
|
|
type Pet struct {
|
|
ID string `json:"id"`
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
func (Pet) IsEntity() {}
|
|
|
|
type User struct {
|
|
ID string `json:"id"`
|
|
Pets []*Pet `json:"pets"`
|
|
}
|
|
|
|
func (User) IsEntity() {}
|