Hi,
Anyone who knows if there exists any Query By Example (QBE) to SQL translator/parser for javascript/typescript?
Example:
Let's say that we have a GraphQL server that implements its resolvers using Node-Oracledb
Then we could send a filter with QBE in the query from GraphQL server.
When we get to the Node-OracleDB we want to translate the QBE to SQL.
{ "$query" : { "salary" : { "gt" : 10000 } } }
Should be transformed to:
salary > 10000
Does anything like this exist in the SODA implementation?
Regards
Håkan