query-0f595ab365f0aadf4ab8772cf231f13f

rq turtle/ttl

NARA P1225 example of series SELECT ?item ?itemLabel WHERE { ?item wdt:P1225 ?ID_NARA; wdt:P31 wd:Q2668072; wdt:P6224 wd:Q3511132. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } LIMIT 5

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#NARA P1225 example of series
SELECT ?item ?itemLabel
WHERE 
{
  ?item wdt:P1225 ?ID_NARA;
        wdt:P31 wd:Q2668072;
        wdt:P6224 wd:Q3511132.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
LIMIT 5

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?ID_NARA") v1("?item"):::projected c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal c3(["wd:Q2668072"]):::iri c5(["wd:Q3511132"]):::iri v1 --"wdt:P1225"--> v2 v1 --"wdt:P31"--> c3 v1 --"wdt:P6224"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end