query-c3d33df2b9bd036d7b36375452ec7926
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#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
SELECT ?item ?itemLabel ?datanascita ?transfermkt WHERE {
?item wdt:P106 wd:Q937857.
?item wdt:P54 wd:Q631.
OPTIONAL { ?item wdt:P569 ?datanascita. }
OPTIONAL { ?item wdt:P2446 ?transfermkt. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "it". }
}
ORDER BY xsd:integer(?ordinal)
LIMIT 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?datanascita"):::projected
v2("?item"):::projected
v1("?ordinal")
v4("?transfermkt"):::projected
c4(["wd:Q631"]):::iri
c8(["bd:serviceParam"]):::iri
c2(["wd:Q937857"]):::iri
c10(["it"]):::literal
v2 --"wdt:P106"--> c2
v2 --"wdt:P54"--> c4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P569".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P2446".-> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end