github.com/dgraph-io/dgraph@v1.2.8/graphql/schema/testdata/schemagen/input/interface-with-no-ids.graphql (about)

     1  interface Message {
     2      text: String
     3  }
     4  
     5  type Question implements Message {
     6      askedBy: User
     7  }
     8  
     9  type User {
    10      name: String
    11      messages: [Message]
    12  }