Hi I need to select doc where field name has backslash with single quote which is
name: Pile oxyde d’argent ---- edit ( does not show \ ’ inside the name , only visible ’ )
When I try with query
where name = "Pile oxyde d\'argent"
I get error
"syntax error: invalid quoted string - at \"Pile oxyde d\\'argent"
Its worth mention that this way works
query where name = "Pile oxyde d\\'argent"
but I cannot change the name please help is there any way to query this?