query-1b1303ad98e35c13707202747544e32d

rq turtle/ttl

Number of references to Le Figaro with a particular date. (Q216047)Le Figaro (P248)stated in A quick query to count how many statement-attributions there are that a statement has a reference that the statement was

Use at

PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX prov: <http://www.w3.org/ns/prov#>
PREFIX pr: <http://www.wikidata.org/prop/reference/>
SELECT (count(?ref) as ?mentions) WHERE {
  ?statement prov:wasDerivedFrom ?ref .
  ?ref pr:P248 wd:Q216047 .
  ?ref pr:P577 ?date .
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?date") v4("?mentions") v2("?ref"):::projected v1("?statement") c3(["wd:Q216047"]):::iri v1 --"prov:wasDerivedFrom"--> v2 v2 --"pr:P248"--> c3 v2 --"pr:P577"--> v3 bind1[/"count(?ref)"/] v2 --o bind1 bind1 --as--o v4