github.com/dgraph-io/dgraph@v1.2.8/graphql/schema/testdata/schemagen/input/hasInverse.graphql (about)

     1  type Post {
     2    id: ID!
     3    author: Author! @hasInverse(field: "posts")
     4  }
     5  
     6  type Author {
     7    id: ID!
     8    posts: [Post!]! @hasInverse(field: "author")
     9  }