paulrostorp commented :
@MichelDiz You are right, our use case is not graphql, however it is similar to @romshark because we also use an identifier that is not the uid, therefore we’d need to be able to use val() in “after” in order to avoid doing two roundtrip queries. What I’m looking to do is something like this:
var(func: eq(someItem.xid, "someXid")) {
someItem as uid
}
items(func: ... , after: val(someItem)) {
...
}