How to convert PQL query in to JSON?
I'm trying to convert the below PQL query (Publisher's Query Language) in to JSON format.
StatementBuilder statementBuilder = new StatementBuilder() .where("CUSTOM_CRITERIA LIKE '%permutive'") .withBindVariableValue("orderId", orderId);
Can any one help with this ? Thanks in advance !