https://github.com/tansen87/insightflow
flow
https://github.com/tansen87/insightflow
Last synced: 12 months ago
JSON representation
flow
- Host: GitHub
- URL: https://github.com/tansen87/insightflow
- Owner: tansen87
- Created: 2025-07-23T12:08:26.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-08-02T00:30:23.000Z (12 months ago)
- Last Synced: 2025-08-02T02:36:16.394Z (12 months ago)
- Language: Rust
- Size: 17.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# InsightFlow
### usage (json input)
```json
[
{
"op": "select",
"mode": null,
"column": "name|idx",
"alias": "new_name|new_idx"
},
{
"op": "filter",
"mode": "equal",
"column": "idx",
"value": "3"
},
{
"op": "filter",
"mode": "is_null",
"column": "idx"
}
]
```