query-60d465fbfe4b8dc4f78d553a8ebe1fce
Authority Control1. Return the names of all applications for which there is a PUID in Wikidata: } } . "en" language:wikibase serviceParam:bd { label:wikibase SERVICE . ?puid P2749:wdt ?software . Q166142:wd P31:wdt ?software { WHERE ?puid ?softwareLabel ?software SELECT 2. Return the names of all fileformats for which there is a PUID in Wikidata:
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?format ?formatLabel ?puid
WHERE {
?format wdt:P2748 ?puid .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?format"):::projected
v2("?puid"):::projected
c3(["bd:serviceParam"]):::iri
c5(["en"]):::literal
v1 --"wdt:P2748"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end