JSPM

  • Created
  • Published
  • Downloads 131
  • Score
    100M100P100Q72625F
  • License MIT

SPARQL 1.1 formatter

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (sparql-formatter) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    SPARQL 1.1 formatter

    Website: https://sparqling.github.io/sparql-formatter/

    Command line tools

    Installation

    $ git clone https://github.com/sparqling/sparql-formatter
    $ cd sparql-formatter
    $ npm install

    Optional:

    $ npm link

    Usage

    $ cat sparql11-query/02.2.rq
    PREFIX foaf:   <http://xmlns.com/foaf/0.1/>
    PREFIX foaf:   <http://xmlns.com/foaf/0.1/>
    SELECT ?name ?mbox
    WHERE
      { ?x foaf:name ?name .
        ?x foaf:mbox ?mbox }
    $ sparql-formatter sparql11-query/02.2.rq
    PREFIX foaf: <http://xmlns.com/foaf/0.1/>
    PREFIX foaf: <http://xmlns.com/foaf/0.1/>
    
    SELECT ?name ?mbox
    WHERE {
      ?x foaf:name ?name .
      ?x foaf:mbox ?mbox .
    }

    SPARQL 1.1 query examples

    Test

    $ sparql-formatter-test sparql11-query/*.rq
    true    sparql11-query/02.1.rq
    true    sparql11-query/02.2.rq
    ...
    true    sparql11-query/17.rq