-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Labels
area/querylang/functionexp/intermediateFixing this requires some experience with the project.Fixing this requires some experience with the project.kind/bugSomething is broken.Something is broken.status/acceptedWe accept to investigate/work on it.We accept to investigate/work on it.
Description
What version of Dgraph are you using?
v1.2.0
Have you tried reproducing the issue with the latest release?
Yes
What is the hardware spec (RAM, OS)?
4G, Linux
Steps to reproduce the issue (command/config used to run Dgraph).
Go to
https://dgraph.io/docs/query-language/#inequality
Try:
curl -H "Content-Type: application/graphql+-" localhost:8080/query -XPOST -d '
{
var(func: has(name@en), first: 50) {
test as uid
}
ss(func: uid(test), first: 2, after: 0x6) {
uid
}
}' | python -m json.tool | less
Response:
{
"data": {
"ss": [
{
"uid": "0x4"
},
{
"uid": "0x6"
}
]
}
}
Expected behaviour and actual result.
Expected:
Returns uid > 0x6
wildan2711
Metadata
Metadata
Assignees
Labels
area/querylang/functionexp/intermediateFixing this requires some experience with the project.Fixing this requires some experience with the project.kind/bugSomething is broken.Something is broken.status/acceptedWe accept to investigate/work on it.We accept to investigate/work on it.