query-66f0f05bd599db5322f5227e1f66e43e
Propertiesauthor (P50)occupation (P106)
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 ?player ?playerLabel ?work ?workLabel ?evidence
WHERE
{
?evidence schema:about ?work.
?work wdt:P50 ?player.
?player wdt:P106 wd:Q10871364. # occupation: baseball player
FILTER regex(STR(?evidence), 'https://en.wikipedia.org/wiki/')
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}
ORDER BY ?playerLabel ?workLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?evidence"):::projected
v5("?player"):::projected
v1("?playerLabel"):::projected
v4("?work"):::projected
v2("?workLabel"):::projected
c7(["bd:serviceParam"]):::iri
c5(["wd:Q10871364"]):::iri
c9(["en"]):::literal
f0[["regex(str(?evidence),'https://en.wikipedia.org/wiki/')"]]
f0 --> v3
v3 --"schema:about"--> v4
v4 --"wdt:P50"--> v5
v5 --"wdt:P106"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end