简体   繁体   中英

How to make a query SPARQL multiline in javascript?

how to make a query SPARQL multiline in javascript? What is the correct syntax?

var query = "
    PREFIX dcterms: <http://purl.org/dc/terms/>
    PREFIX fabio: <http://purl.org/spar/fabio/>
    PREFIX frbr: <http://purl.org/vocab/frbr/core#>

    SELECT DISTINCT ?x
    WHERE {
       ?x a fabio:Item.
    }";

Your options are:

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM