Hi,
I am trying to filter by the value of the edge predicate.
The simplified schema looks like this:
type <Video> {
url
created_by
}
type<User> {
status
}
<created_by>: uid @reverse .
<status>: int .
I am trying to filter all the Video nodes by created_by but I got an empty response. I know that the ‘created_by’ is of the type uid, but…
Here is my not working attempt: