query-7574f9914a824453cfe20dd3ed13dc39

rq turtle/ttl

NARA P6759 SELECT ?item ?itemLabel ?natureLabel ?ID WHERE { ?item wdt:P6759 ?ID; wdt:P31 ?nature. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY xsd:integer(?ID)

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#NARA P6759
SELECT ?item ?itemLabel ?natureLabel ?ID
WHERE 
{
  ?item wdt:P6759 ?ID;
        wdt:P31 ?nature.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY xsd:integer(?ID)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?ID"):::projected v2("?item"):::projected v3("?nature") c4(["bd:serviceParam"]):::iri c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"wdt:P6759"--> v1 v2 --"wdt:P31"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end