query-40f0568e58467ef7d0d89eea56d68499
articles scientifiques non associé à une publication, possédant un identifiant NASA ADS, avec la partie de l'identifiant ADS désignant le code du périodique concerné SELECT distinct ?item ?label ?identifiant WHERE { ?item wdt:P31 wd:Q13442814 ; rdfs:label ?label ; wdt:P819 ?ads ; bind(STR(?ads) as ?string) BIND (REPLACE (?string, ".?([^0-9]?)\..*$", "$1") AS ?identifiant) MINUS{?item wdt:P1433 ?pubs .} } limit 1000
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
#articles scientifiques non associé à une publication, possédant un identifiant NASA ADS, avec la partie de l'identifiant ADS désignant le code du périodique concerné
SELECT distinct ?item ?label ?identifiant
WHERE {
?item wdt:P31 wd:Q13442814 ;
rdfs:label ?label ;
wdt:P819 ?ads ;
bind(STR(?ads) as ?string)
BIND (REPLACE (?string, ".*?([^0-9]*?)\\..*$", "$1") AS ?identifiant)
MINUS{?item wdt:P1433 ?pubs .}
}
limit 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?ads")
v5("?identifiant"):::projected
v1("?item"):::projected
v2("?label"):::projected
v6("?pubs")
v4("?string")
c2(["wd:Q13442814"]):::iri
v1 --"wdt:P31"--> c2
v1 --"rdfs:label"--> v2
v1 --"wdt:P819"--> v3
bind0[/"str(?ads)"/]
v3 --o bind0
bind0 --as--o v4
bind1[/"replace(?string,'.*?(#91;^0-9#93;*?)\..*$','$1')"/]
v4 --o bind1
bind1 --as--o v5
subgraph minus2["MINUS"]
style minus2 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P1433"--> v6
end