query-a7415fddf5aa15d08596282c2870cce5
articles created during editathon SELECT ?item ?itemLabel WHERE { ?item wdt:P5008 wd:Q53764742. ?item p:Q53764742 [ps:P276 pq:Q727;]. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#articles created during editathon
SELECT ?item ?itemLabel
WHERE
{
?item wdt:P5008 wd:Q53764742.
?item p:Q53764742 [ps:P276 pq:Q727;].
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
a1((" "))
c7(["bd:serviceParam"]):::iri
c4(["p:qualifier/Q727"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2(["wd:Q53764742"]):::iri
v1 --"p:direct/P5008"--> c2
a1 --"p:statement/P276"--> c4
v1 --"p:Q53764742"--> a1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end