query-56538b61c7adde6de6e6b9837b4d7a7f
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?player ?playerLabel ?placeofB ?dateofB ?positionLabel WHERE {
?player wdt:P1344/wdt:P3450 wd:Q260858 ; wdt:P31 wd:Q5 .
OPTIONAL { ?player wdt:P19 ?placeofB }
OPTIONAL { ?player wdt:P569 ?dateofB }
OPTIONAL { ?player wdt:P413 ?position }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?dateofB"):::projected
v2("?placeofB"):::projected
v1("?player"):::projected
v4("?position")
a1((" "))
c10(["bd:serviceParam"]):::iri
c5(["wd:Q5"]):::iri
c12(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c3(["wd:Q260858"]):::iri
v1 --"wdt:P1344"--> a1
a1 --"wdt:P3450"--> c3
v1 --"wdt:P31"--> c5
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P19".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P569".-> v3
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P413".-> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end