query-bb8d6aaee99e6e0650d9ab0f6dea60e3
Uses of anonymous
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?x ?xLabel ?xDescription ?p ?pLabel ?pDescription
WHERE {
?x ?wdt wd:Q4233718 .
?p wikibase:directClaim ?wdt .
FILTER(?p != wd:P31)
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?p"):::projected
v3("?wdt")
v2("?x"):::projected
c5(["bd:serviceParam"]):::iri
c2(["wd:Q4233718"]):::iri
c7(["en"]):::literal
f0[["?p != 'wd:P31'"]]
f0 --> v1
v2 -->v3--> c2
v1 --"wikibase:directClaim"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end