query-512206723bf4ae65b0f269ec7c51abb7
Propertiesposition played on team / speciality (P413)member of sports team (P54)date of birth (P569)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT DISTINCT ?shortstop ?shortstopLabel ?birthdate ?evidence
WHERE
{
?evidence schema:about ?shortstop.
?shortstop wdt:P413 wd:Q1143358; # shortstop.
wdt:P54 wd:Q308966; # San Francisco Giants
wdt:P569 ?birthdate.
FILTER regex(STR(?evidence), 'https://en.wikipedia.org/wiki/')
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?shortstopLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?birthdate"):::projected
v2("?evidence"):::projected
v3("?shortstop"):::projected
v1("?shortstopLabel"):::projected
c6(["wd:Q308966"]):::iri
c9(["bd:serviceParam"]):::iri
c4(["wd:Q1143358"]):::iri
c11(["en"]):::literal
f0[["regex(str(?evidence),'https://en.wikipedia.org/wiki/')"]]
f0 --> v2
v2 --"schema:about"--> v3
v3 --"wdt:P413"--> c4
v3 --"wdt:P54"--> c6
v3 --"wdt:P569"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end