What I want to do
I’m working with dgraph using custom python client implementation. So i’m making a grpc request to create a record in database and i want to return it without making another request. Could not find anything in documentation or in discussions in this forum and github. Seems like a very common case to me. So is there a way to return a new created or updated record after DQL mutation? I can use json or rdf notation.
Here is a simple example.
{
"set": [
{
"Person.title": "John Doe",
"dgraph.type": "Person"
}
]
}
Thanks for any help and sorry of it was already discussed many times)