query-aa9277ebc23e6da5996dab91c3cd4b26

rq turtle/ttl

title:Inapp Working Paper con titolo, numero, anno SELECT ?work ?workLabel ?n ?year WHERE { ?work wdt:P1433 wd:Q114244914 ; wdt:P433 ?n ; wdt:P577 ?date . BIND(YEAR(?date) AS ?year) SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY xsd:integer(?n)

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#>
#title:Inapp Working Paper con titolo, numero, anno
SELECT ?work ?workLabel ?n ?year
WHERE {
  ?work wdt:P1433 wd:Q114244914 ; wdt:P433 ?n ; wdt:P577 ?date . BIND(YEAR(?date) AS ?year)
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY xsd:integer(?n)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?date") v1("?n"):::projected v2("?work"):::projected v4("?year"):::projected c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2(["wd:Q114244914"]):::iri v2 --"wdt:P1433"--> c2 v2 --"wdt:P433"--> v1 v2 --"wdt:P577"--> v3 bind0[/"year-from-dateTime(?date)"/] v3 --o bind0 bind0 --as--o v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end