Implement TypeQL parsing in languages other than Java. This would for instance allow reading entire files of queries into the python or node client without having to hack some custom delimiters into the files and executing line by line within the user's application code.
One can either spread custom delimiters in the file that contains definitions or queries and parse these out in the client's application logic, executing them one by one, or write a wrapper around a small client-java and typeql program to do this using parseList()
Problem to Solve
Implement TypeQL parsing in languages other than Java. This would for instance allow reading entire files of queries into the python or node client without having to hack some custom delimiters into the files and executing line by line within the user's application code.
Derives from: https://github.com/graknlabs/client-python/issues/41
Current Workaround
One can either spread custom delimiters in the file that contains definitions or queries and parse these out in the client's application logic, executing them one by one, or write a wrapper around a small
client-java
andtypeql
program to do this usingparseList()
Proposed Solution
Extend ANTLR to other languages.
Additional Information