I have a scenario where I need filter data using RSQL
.
I need to get specific columns hence using $projection=field_list=in=(FAMILY Id)
But as the column here "FAMILY Id" has a space , its throwing below error.
cz.jirutka.rsql.parser.ParseException: Encountered " <UNRESERVED_STR> "Id "" at line 1, column 23.
Was expecting one of:
<OR> ...
")" ...
If I pass the same in single quotes it would work , like $projection=field_list=in=('FAMILY Id')
, but is there any other way to handle the same , as i have few more scenarios in the similar way where putting the same in single quotes too does not work.
Thank you.
~Shyam