query-2fb5849a00be5f2b894e74ed420ee237

rq turtle/ttl

Feminists1. Return a list of all notable works by feminists: } } . "en" language:wikibase serviceParam:bd { label:wikibase SERVICE . ?work P800:wdt ?person . Q16830344:wd P106:wdt ?person { WHERE ?workLabel ?personLabel SELECT 2. Return a list of all feminists listed as such in Wikidata: } } . "en" language:wikibase serviceParam:bd { label:wikibase SERVICE . Q16830344:wd P106:wdt ?person { WHERE ?personLabel SELECT 3. Return a list of all feminists and their DOBs: } } . "en" language:wikibase serviceParam:bd { label:wikibase SERVICE . ?year P569:wdt ?person . Q16830344:wd P106:wdt ?person { WHERE ?year ?personLabel SELECT 4. Return a list of all feminists and geocoordinates for place of birth (defaults to map view):

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX psv: <http://www.wikidata.org/prop/statement/value/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Map
SELECT  ?personLabel ?birthplaceLabel ?coord ?lat ?lon

WHERE {
  ?person wdt:P106 wd:Q16830344 .
  ?person wdt:P19 ?birthplace
  OPTIONAL {?birthplace wdt:P625 ?coord. }
   OPTIONAL {
    ?birthplace p:P625 ?statement.
    ?statement psv:P625 ?node.
    ?node wikibase:geoLatitude ?lat.
    ?node wikibase:geoLongitude ?lon.
   }
  SERVICE wikibase:label {
        bd:serviceParam wikibase:language "en" .

}
  }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?birthplace") v3("?coord"):::projected v6("?lat"):::projected v7("?lon"):::projected v5("?node") v1("?person") v4("?statement") c2(["wd:Q16830344"]):::iri c10(["bd:serviceParam"]):::iri c12(["en"]):::literal v1 --"p:direct/P106"--> c2 v1 --"p:direct/P19"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."p:direct/P625".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."p:P625".-> v4 v4 --"p:statement/value/P625"--> v5 v5 --"wikibase:geoLatitude"--> v6 v5 --"wikibase:geoLongitude"--> v7 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end