query-f354a44b7d052dfa0eaf50f778b2aa52

rq turtle/ttl

Propertiesinstance of (P31)FAST ID (P2163)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?s ?sLabel ?typeLabel ?fastURI
WHERE {
  ?s wdt:P31 ?type;
    wdt:P2163 ?fast.
  BIND (URI(CONCAT("http://id.worldcat.org/fast/",?fast)) AS ?fastURI)
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?fast") v4("?fastURI"):::projected v1("?s"):::projected v2("?type") c4(["bd:serviceParam"]):::iri c6(["en"]):::literal v1 --"wdt:P31"--> v2 v1 --"wdt:P2163"--> v3 bind0[/"concat('http://id.worldcat.org/fast/',?fast)"/] v3 --o bind0 bind0 --as--o v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end