query-adaab714bc87431b61dc770eea92d8b8
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
select ?item ?itemLabel {
{
select distinct ?item {
?item p:P577 ?itemP577stmt1, ?itemP577stmt2
filter(?itemP577stmt1 != ?itemP577stmt2) .
?itemP577stmt1 a wikibase:BestRank .
?itemP577stmt1 a wikibase:BestRank .
} limit 100
}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en,[AUTO_LANGUAGE],en" .
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?item"):::projected
v1("?itemP577stmt1")
v2("?itemP577stmt2")
c7(["en,#91;AUTO_LANGUAGE#93;,en"]):::literal
c5(["bd:serviceParam"]):::iri
c3(["wikibase:BestRank"]):::iri
f0[["?itemP577stmt1 != ?itemP577stmt2"]]
f0 --> v1
f0 --> v2
v3 --"p:P577"--> v1
v3 --"p:P577"--> v2
v1 --"a"--> c3
v1 --"a"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end