Hi,
The data I am trying to insert in dgraph has double quotes in it. How do i preserve the quotes when the data is stored in Dgraph?
This gives error
{
set{
_:792636 <uid> _:792636 .
_:792636 <name> "Test "quotes" .
}
}
where this inserts the backslash as well
{
set{
_:792636 <uid> _:792636 .
_:792636 <name> "Test \"quotes" .
}
}
Also what are the other characters that would create problems?
Any help would be appreciated.