https://github.com/zeionara/sparqler
Google appscript - based tool for converting sparql queries from a human-readble format into machine-interpretable representation with minimal impact on the knowledge base
https://github.com/zeionara/sparqler
Last synced: 3 months ago
JSON representation
Google appscript - based tool for converting sparql queries from a human-readble format into machine-interpretable representation with minimal impact on the knowledge base
- Host: GitHub
- URL: https://github.com/zeionara/sparqler
- Owner: zeionara
- License: apache-2.0
- Created: 2022-01-31T17:13:50.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-31T18:52:50.000Z (over 3 years ago)
- Last Synced: 2025-01-02T07:46:14.969Z (5 months ago)
- Language: JavaScript
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sparqler
sparqler - google appscript - based tool for converting sparql queries from a human-readble format into machine-interpretable representation with minimal impact on the knowledge base.
To run from the command line (you will also need to log into the google api itself):
```sh
clasp run map -p '["SELECT DISTINCT ?flour WHERE {?_ o:non_wheat_flour ?flour.}"]'
```Expected result:
```sh
SELECT DISTINCT ?flour WHERE {
?_ orkgp:P37571 ?flour.
}
```