...

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

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

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

View as plain text