query-f3938151f2bfedab8fc1e9431a2cb261

rq turtle/ttl

Film descriptions improving/fixing needed ]reply[22:00, 5 June 2017 (UTC), XXN that project members have found some types of descriptions which needs to be improved, especially English description "film" and Italian description "film del diretto da" (this seems to be completely wrong). AFAIK for the task related to film items currently your bot does not overwrite descriptions. Could you add the function to overwrite 'en' & 'it' descriptions (temporary, for this task) and to run one-time the bot through the results returned by those queries? At the time of writing this message, there was 1281 (en) + 762 (it) items returned by queries. Wikidata:WikiProject_Movies/Tools#Improve_descriptions@Emijrp, I just saw in ") can be safely overwritten with a better description (the pattern you are using):film, ~YEAR~" and "filmIf you plan to modify the code for the case mentioned above, I've found also some Romanian descriptions to overwrite. Most of the items from the result of the following query (those very short, like " I've provided Romanian description patterns for bot code, check git.

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?item ?itemLabel ?itemDescription
{
  ?item wdt:P31 wd:Q11424 .
  FILTER EXISTS { ?item schema:description  ?itemDescription filter (lang(?itemDescription) = "ro") . }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "ro,en,fr"}
}
LIMIT 2000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?itemDescription"):::projected c8(["ro,en,fr"]):::literal c6(["bd:serviceParam"]):::iri c4(["wd:Q11424"]):::iri f0[[" "]] subgraph f0e0["Exists Clause"] e0f0[["?itemDescription = 'ro'"]] e0f0 --> e0v1 e0v2 --"schema:description"--> e0v1 e0v2("?item"):::projected e0v1("?itemDescription"):::projected end f0--EXISTS--> f0e0 f0 --> v1 f0 --> v2 f0 --> c2 f1[["?itemDescription = 'ro'"]] f1 --> v1 v2 --"schema:description"--> v1 v2 --"wdt:P31"--> c4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end