query-c7a2e0e4fb21c31c89606bf29c3c4b50
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?prop ?propLabel ?value {
VALUES ?pred { wdt:P1628 wdt:P2235 } .
?item ?pred ?value .
?prop wikibase:directClaim ?pred .
FILTER( STRSTARTS( STR(?value), "http://www.w3.org/2006/vcard/ns" ) ) .
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;
v3("?item"):::projected
v2("?pred")
v4("?prop"):::projected
v1("?value"):::projected
c4(["bd:serviceParam"]):::iri
c6(["en"]):::literal
f0[["starts-with(str(?value),'http://www.w3.org/2006/vcard/ns')"]]
f0 --> v1
bind1[/VALUES ?pred/]
bind1-->v2
bind10(["wdt:P1628"])
bind10 --> bind1
bind11(["wdt:P2235"])
bind11 --> bind1
v3 -->v2--> v1
v4 --"wikibase:directClaim"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end