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.
17 lines
257 B
Go
17 lines
257 B
Go
1 year ago
|
// 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() {}
|