I want to insert literal which has brackets(") inside using insert statement.
sparql insert data { pred:a pred:b "Literal"}
The above query works fine.
sparql insert data { pred:a pred:b "\"Literal\""}
I want to add Literal along with quotes surrounding it. But the above query fails.
How to insert the literal along with quotes?