query-9cc0096e666d130733d56b109d82628a
De yngste er typisk kongelige børn.
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT
?person ?personLabel
WHERE {
{
SELECT ?person WHERE {
?person wdt:P31 wd:Q5 .
?person wdt:P21 ?gender .
?article schema:about ?person .
?article schema:isPartOf <https://da.wikipedia.org/> .
?person wdt:P569 ?datetime .
FILTER (?datetime >= "2010-01-01T00:00:00Z"^^xsd:dateTime)
}
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "da". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?article")
v1("?datetime")
v3("?gender")
v2("?person"):::projected
c10(["bd:serviceParam"]):::iri
c3(["wd:Q5"]):::iri
c7([https://da.wikipedia.org/]):::iri
c12(["da"]):::literal
f0[["?datetime >= '2010-01-01T00:00:00Z^^xsd:dateTime'"]]
f0 --> v1
v2 --"wdt:P31"--> c3
v2 --"wdt:P21"--> v3
v4 --"schema:about"--> v2
v4 --"schema:isPartOf"--> c7
v2 --"wdt:P569"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end