query-47a04b1f3d063a2e16dbd1657426b5cf
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?label {
VALUES ?label { "Prolog"@en "Python"@en "PHP"@en } .
?item rdfs:label ?label .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?label"):::projected
bind0[/VALUES ?label/]
bind0-->v1
bind00([sProlog^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"])
bind00 --> bind0
bind01([sPython^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"])
bind01 --> bind0
bind02([sPHP^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"])
bind02 --> bind0
v2 --"rdfs:label"--> v1