github.com/spread-ai/gqlgen@v0.0.0-20221124102857-a6c8ef538a1d/plugin/federation/fedruntime/runtime.go (about) 1 package fedruntime 2 3 // Service is the service object that the 4 // generated.go file will return for the _service 5 // query 6 type Service struct { 7 SDL string `json:"sdl"` 8 } 9 10 // Everything with a @key implements this 11 type Entity interface { 12 IsEntity() 13 } 14 15 // Used for the Link directive 16 type Link interface{}