query-c37e368ec28627deba49ca1ae6963707
PropertiesFAST ID (P2163)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?wdItem ?fastURI ?label ?description ?labelLang
WHERE {
?wdItem wdt:P2163 ?fast;
rdfs:label ?label;
schema:description ?description.
BIND (LANG(?label) as ?labelLang)
BIND (LANG(?description) as ?descriptionLang)
BIND (URI(CONCAT("http://id.worldcat.org/fast/",?fast)) AS ?fastURI)
# SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
FILTER (?labelLang = ?descriptionLang)
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v6("?description"):::projected
v7("?descriptionLang")
v4("?fast")
v7("?fastURI"):::projected
v5("?label"):::projected
v7("?labelLang"):::projected
v3("?wdItem"):::projected
f0[["?labelLang = ?descriptionLang"]]
f0 --> v7
f0 --> v7
v3 --"wdt:P2163"--> v4
v3 --"rdfs:label"--> v5
v3 --"schema:description"--> v6
bind1[/"?label"/]
v5 --o bind1
bind1 --as--o v7
bind2[/"?description"/]
v6 --o bind2
bind2 --as--o v7
bind3[/"concat('http://id.worldcat.org/fast/',?fast)"/]
v4 --o bind3
bind3 --as--o v7