react-awesome-query-builder
react-awesome-query-builder copied to clipboard
How to export to postfix (RPN) format ?
I want to use this library for a tool that lets users query an API that accepts a Reverse Polish Notation based query. So, a regular infix query like this "module==auth && history==true" would look like "module, auth,==, history, true, ==, &&"
I went through the demo code to see if there is a way to introduce new export types, but couldn't figure out. Any pointers will be appreciated. Thanks!