query-d813b7c6f913a59d3e245e69b3ed3d45
Personnes dans SAPA et TLS mort avant juin 1952 (70 ans) SELECT ?item ?itemLabel ?died ?SAPA ?wde ?wfr WHERE { ?item wdt:P8974 ?SAPA; wdt:P1362 []; # doit avoir comme nature chat wdt:P570 ?died. filter (?died < "1952-06-30T00:00:00Z"^^xsd:dateTime). OPTIONAL {?wde schema:about ?item. ?wde schema:isPartOf https://de.wikipedia.org/.} OPTIONAL {?wfr schema:about ?item. ?wfr schema:isPartOf https://fr.wikipedia.org/.} SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } # le label viendra de préférence dans votre langue, et autrement en anglais } LIMIT 100
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Personnes dans SAPA et TLS mort avant juin 1952 (70 ans)
SELECT ?item ?itemLabel ?died ?SAPA ?wde ?wfr
WHERE
{
?item wdt:P8974 ?SAPA;
wdt:P1362 []; # doit avoir comme nature chat
wdt:P570 ?died.
filter (?died < "1952-06-30T00:00:00Z"^^xsd:dateTime).
OPTIONAL {?wde schema:about ?item.
?wde schema:isPartOf <https://de.wikipedia.org/>.}
OPTIONAL {?wfr schema:about ?item.
?wfr schema:isPartOf <https://fr.wikipedia.org/>.}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } # le label viendra de préférence dans votre langue, et autrement en anglais
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?SAPA"):::projected
v1("?died"):::projected
v2("?item"):::projected
v4("?wde"):::projected
v5("?wfr"):::projected
a1((" "))
c7([https://de.wikipedia.org/]):::iri
c10(["bd:serviceParam"]):::iri
c8([https://fr.wikipedia.org/]):::iri
c12(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["?died < '1952-06-30T00:00:00Z^^xsd:dateTime'"]]
f0 --> v1
v2 --"wdt:P8974"--> v3
v2 --"wdt:P1362"--> a1
v2 --"wdt:P570"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v4 -."schema:about".-> v2
v4 --"schema:isPartOf"--> c7
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v5 -."schema:about".-> v2
v5 --"schema:isPartOf"--> c8
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end