Reverse Index is not ticked, even though @hasInverse is used

Hi Team,

I used @hasInverse properly, i.e. it works with GraphQL:

type User {
    saved: [Post!] @hasInverse(field: savedBy)
}

interface Post {
    id: ID!
	savedBy: [User!] @hasInverse(field: saved)
}

type Illustration implements Post {
}

However, the Ratel UI doesn’t say so:

Screenshot from 2020-06-21 15-55-05

I have the same problem. There are any news about this issue?

The implementation of hasInverse doesn’t use the native reverse index. That’s something that @pawan would explain better.

He explained it already over here

Let us know where you stand after reading that.

1 Like