You are only requesting the UID in the query. Add more predicates, such as “name, age, and so on”
I picked up the mutation I created above, I runned on my machine. Then I used a query and see what dgraph gave me.
{
"data": {
"Users": [
{
"name": "Lucas De Niro",
"age": 31,
"type.user": " ",
"owner.post": [
{
"likes": [
{
"option": "a) Major Client"
}
],
"type.post": "",
"post.Description": [
{
"body": "This is a very large description.",
"type.desc": ""
}
],
"post.title": [
{
"title": "This is a title",
"type.title": ""
}
],
"~owner.post": [
{
"name": "Lucas De Niro",
"age": 31,
"type.user": " "
}
]
}
]
}
]
},
"extensions": {
"server_latency": {
"processing_ns": 1000600
},
"txn": {
"start_ts": 114,
"lin_read": {
"ids": {
"1": 19
}
}
}
}
}
oh!, some things in the JSON are confusing because I was already using this machine. Then there were some collisions.

