query-4cf0d94a741821d7302bf212b297f41e

rq turtle/ttl

Usage|?plop|en}}Labelled{{ ?plop rdfs:label ?plopLabelEn filter (lang(?plopLabelEn) = "en") {{sparql|query= select ?plop ?plopLabelEn ?plopLabelJa { # Items with an english labels and a japanese label {{Labelled|?plop|en}} {{Labelled|?plop|ja}} } limit 1000 }}

Use at

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
select ?plop ?plopLabelEn ?plopLabelJa {
  # Items with an english labels and a japanese label

     ?plop rdfs:label ?plopLabelEn filter (lang(?plopLabelEn) = "en")

     ?plop rdfs:label ?plopLabelJa filter (lang(?plopLabelJa) = "ja")
} limit 1000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?plop"):::projected v2("?plopLabelEn"):::projected v1("?plopLabelJa"):::projected f0[["?plopLabelJa = 'ja'"]] f0 --> v1 f1[["?plopLabelEn = 'en'"]] f1 --> v2 v3 --"rdfs:label"--> v2 v3 --"rdfs:label"--> v1