query-3d3c24a5b4e3f5a60503b1d2a40a712d

rq turtle/ttl

VIAF manque ISNI tinyurl.com/yd3cacgd

Use at

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 bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?dod ?itemLabel ?itemDescription ?nom ?viaf
WHERE
{
    ?item wdt:P570 ?dod .
    FILTER ( ?dod >= "2017-01-01T00:00:00Z"^^xsd:dateTime && ?dod <= "2017-12-31T00:00:00Z"^^xsd:dateTime )
    ?item wdt:P31 wd:Q5 .
    ?item wdt:P214 ?viaf.

    OPTIONAL { ?item wdt:P1559 ?nom }
    OPTIONAL { ?item wdt:P213 ?isni }
    FILTER(!bound(?isni))
    SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }  
}
ORDER BY ASC(?dod)

Limit 2000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?dod"):::projected v2("?isni") v3("?item"):::projected v5("?nom"):::projected v4("?viaf"):::projected c10(["bd:serviceParam"]):::iri c5(["wd:Q5"]):::iri c12(["fr"]):::literal f0[["not bound(?isni)"]] f0 --> v2 f1[["?dod >= '2017-01-01T00:00:00Z^^xsd:dateTime'?dod <= '2017-12-31T00:00:00Z^^xsd:dateTime'"]] f1 --> v1 v3 --"wdt:P570"--> v1 v3 --"wdt:P31"--> c5 v3 --"wdt:P214"--> v4 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P1559".-> v5 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P213".-> v2 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c10 --"wikibase:language"--> c12 end