query-807be5754a9f1ed4577dfd3a0a92926e

rq turtle/ttl

TODO has a date later than 2011-08-23 (after that date FIFA Ranking pages have the point column).(P585)point in time as a qualifier. if and only if the qualifier (P1358)points for as a qualifier, but with not (Q253414)FIFA --> (P447)review score by with any value and with (P1352)ranking Items with

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pqv: <http://www.wikidata.org/prop/qualifier/value/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
SELECT ?item ?value ?time WHERE {
  ?item p:P1352 ?s .
  ?s ps:P1352 ?value; pq:P447 wd:Q253414; pqv:P585 [ wikibase:timeValue ?time ] .
  MINUS { ?s pq:P1358 [] }
  FILTER(?time > "+2011-08-23T00:00:00Z"^^xsd:dateTime) .  
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v3("?s") v1("?time"):::projected v4("?value"):::projected a2((" ")) a1((" ")) c5(["wd:Q253414"]):::iri f0[["?time > '+2011-08-23T00:00:00Z^^xsd:dateTime'"]] f0 --> v1 v2 --"p:P1352"--> v3 v3 --"p:statement/P1352"--> v4 v3 --"p:qualifier/P447"--> c5 a1 --"wikibase:timeValue"--> v1 v3 --"p:qualifier/value/P585"--> a1 subgraph minus1["MINUS"] style minus1 stroke-width:6px,fill:pink,stroke:red; v3 --"p:qualifier/P1358"--> a2 end