query-b64d6dcb239eb4da74bb8ce549eb688a
Objects without an inception date
Use at
- https://query.wikidata.org/sparql
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 ?itemLabel ?collectionLabel ?url
WHERE {
?item wdt:P195 ?collection.?collection wdt:P361 wd:Q63160499 # in Khalili Collections
MINUS {?item wdt:P571 ?value} # no inception date
OPTIONAL {?item wdt:P973 ?url}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
}
ORDER BY ?collectionLabel ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?collection")
v1("?collectionLabel"):::projected
v3("?item"):::projected
v2("?itemLabel"):::projected
v6("?url"):::projected
v5("?value")
c7(["bd:serviceParam"]):::iri
c3(["wd:Q63160499"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v3 --"wdt:P195"--> v4
v4 --"wdt:P361"--> c3
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v3 --"wdt:P571"--> v5
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."wdt:P973".-> v6
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end