An open API service indexing awesome lists of open source software.

https://github.com/andimiller/integrated-query-language

JSON query and transform language
https://github.com/andimiller/integrated-query-language

Last synced: 3 months ago
JSON representation

JSON query and transform language

Awesome Lists containing this project

README

        

# integrated-query-language

This repository contains an AST, Parser and Evaluator for a simple JSON query and transform language, implemented in scala using fastparse for parser combinators.

## Example

```
.foo.bar = "hello"
.foo.baz = .bar
```

This, when evaluated and run with some JSON input, would output JSON with the string "hello" inserted into the "bar" field inside "foo", and the contents of "bar" from the input inserted into "baz" inside "foo".