...

Text file src/github.com/99designs/gqlgen/plugin/federation/testdata/interfaces/key.graphqls

Documentation: github.com/99designs/gqlgen/plugin/federation/testdata/interfaces

     1extend interface Hello @key(fields: "name") {
     2    name: String!
     3    secondary: String!
     4}
     5
     6type World implements Hello @key(fields: "name") {
     7    name: String!
     8    secondary: String!
     9}

View as plain text