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

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

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.
}
```