Moved from GitHub dgraph/5393
Posted by CosmicPangolin:
What version of Dgraph are you using?
20.03.1
Have you tried reproducing the issue with the latest release?
Yep
What is the hardware spec (RAM, OS)?
N/A
Steps to reproduce the issue (command/config used to run Dgraph).
Consider the following schema:
interface File {
users: [User!] @hasInverse(field: files)
}
type Image implements File {
}
type User {
files: [File!]
}
Expected behaviour and actual result.
When I save an Image with a User, I would expect to be able to traverse from User back to that Image via User.files. Currently only the Image —> User edge is created