01fb97e5b1
Bumps [github.com/99designs/gqlgen](https://github.com/99designs/gqlgen) from 0.17.26 to 0.17.27. - [Release notes](https://github.com/99designs/gqlgen/releases) - [Changelog](https://github.com/99designs/gqlgen/blob/master/CHANGELOG.md) - [Commits](https://github.com/99designs/gqlgen/compare/v0.17.26...v0.17.27)
45 lines
1007 B
Go
45 lines
1007 B
Go
// Code generated by github.com/99designs/gqlgen, DO NOT EDIT.
|
|
|
|
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Supergraph interface {
|
|
IsSupergraph()
|
|
}
|
|
|
|
type InputSubGraph struct {
|
|
Ref string `json:"ref"`
|
|
Service string `json:"service"`
|
|
URL *string `json:"url,omitempty"`
|
|
WsURL *string `json:"wsUrl,omitempty"`
|
|
Sdl string `json:"sdl"`
|
|
}
|
|
|
|
type SubGraph struct {
|
|
ID string `json:"id"`
|
|
Service string `json:"service"`
|
|
URL *string `json:"url,omitempty"`
|
|
WsURL *string `json:"wsUrl,omitempty"`
|
|
Sdl string `json:"sdl"`
|
|
ChangedBy string `json:"changedBy"`
|
|
ChangedAt time.Time `json:"changedAt"`
|
|
}
|
|
|
|
type SubGraphs struct {
|
|
ID string `json:"id"`
|
|
MinDelaySeconds int `json:"minDelaySeconds"`
|
|
SubGraphs []*SubGraph `json:"subGraphs"`
|
|
}
|
|
|
|
func (SubGraphs) IsSupergraph() {}
|
|
|
|
type Unchanged struct {
|
|
ID string `json:"id"`
|
|
MinDelaySeconds int `json:"minDelaySeconds"`
|
|
}
|
|
|
|
func (Unchanged) IsSupergraph() {}
|