query-e61ce5c6265d60a5c2cc36e3be1af09d

rq turtle/ttl

Articoli con classificazione Arxiv (P820) uguale a '''cs.DL''' SELECT ?item ?itemLabel ?value ?valueLabel { ?item wdt:P820 ?value . FILTER (?value ="cs.DL") SERVICE wikibase:label { bd:serviceParam wikibase:language "it,en" }
} LIMIT 1000

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Articoli con classificazione Arxiv (P820) uguale a '''cs.DL'''
SELECT ?item ?itemLabel ?value ?valueLabel
{
?item wdt:P820 ?value .
FILTER (?value ="cs.DL")
SERVICE wikibase:label { bd:serviceParam wikibase:language "it,en"  }    
}
LIMIT 1000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?value"):::projected c4(["bd:serviceParam"]):::iri c6(["it,en"]):::literal f0[["?value = 'cs.DL'"]] f0 --> v1 v2 --"wdt:P820"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end