query-cb3aeb697ab88b8ae7b5269be6fe07c3

rq turtle/ttl

Request to add statements for year in motorsport for country categories (2023-07-04) Lights and freedom: Request date: 5 July 2023, byTask description categories: year in motorsport for a countryThis is a request to add the following statements for all (if not already present; some countries use the word "motorsport", others use "motorsports").country - year (if not already present) and motorsport in (P971)category combines topics - the following year in motorsport category for that country(P156)followed by - the previous year in motorsport category for that country(P155)follows . history of the item "Category:2018 in Dutch motorsport"For example, see No urgency, this is just something that should be done. Licence of data to import (if relevant)Discussion statements. (P156)followed by . However, I wonder whether anybody actually uses (P156)followed by I have written the following query to find items lacking

Use at

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 ?a ?b ?aLabel ?bLabel WHERE {
  ?y wdt:P31 wd:Q3186692.

  ?y ^wdt:P971 ?a.
  ?a wdt:P31 wd:Q4167836.
  MINUS {?a wdt:P156 ?an}.
  MINUS {?a wdt:P971 ?as. FILTER(?as != ?x && ?as != ?y).}.
  ?y wdt:P156 ?yy.
  BIND(wd:Q10589714 AS ?x). # Modify this to another topic if finished
  ?a wdt:P971 ?x.
  ?b wdt:P971 ?x.
  ?yy ^wdt:P971 ?b.
  ?b wdt:P31 wd:Q4167836.
  MINUS {?b wdt:P155 ?bn}.
  MINUS {?b wdt:P971 ?bs. FILTER(?bs != ?x && ?bs != ?yy).}.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?a"):::projected v3("?an") v4("?as") v7("?b"):::projected v8("?bn") v9("?bs") v7("?x") v1("?y") v6("?yy") c8(["bd:serviceParam"]):::iri c2(["wd:Q3186692"]):::iri c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal c4(["wd:Q4167836"]):::iri v1 --"wdt:P31"--> c2 v2 --"wdt:P971"--> v1 v2 --"wdt:P31"--> c4 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P156"--> v3 end subgraph minus1["MINUS"] style minus1 stroke-width:6px,fill:pink,stroke:red; f2[["?as != ?x?as != ?y"]] f2 --> v4 f2 --> v7 f2 --> v1 v2 --"wdt:P971"--> v4 end v1 --"wdt:P156"--> v6 bind3[/"'wd:Q10589714'"/] bind3 --as--o v7 v2 --"wdt:P971"--> v7 v7 --"wdt:P971"--> v7 v7 --"wdt:P971"--> v6 v7 --"wdt:P31"--> c4 subgraph minus4["MINUS"] style minus4 stroke-width:6px,fill:pink,stroke:red; v7 --"wdt:P155"--> v8 end subgraph minus5["MINUS"] style minus5 stroke-width:6px,fill:pink,stroke:red; f6[["?bs != ?x?bs != ?yy"]] f6 --> v9 f6 --> v7 f6 --> v6 v7 --"wdt:P971"--> v9 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end