query-b55b69f6795197902968372ac9c0333f

rq turtle/ttl

TODO

Use at

PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?item_label ?item_desc WHERE {
     VALUES ?item_label { "bridge"@en } .
     ?item rdfs:label ?item_label filter (lang(?item_label) = "en").
     OPTIONAL {
        ?item schema:description ?item_desc filter (lang(?item_desc) = "en").
     }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?item"):::projected v2("?item_desc"):::projected v3("?item_label"):::projected f0[["?item_label = 'en'"]] f0 --> v3 bind1[/VALUES ?item_label/] bind1-->v3 bind10([sbridge^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]) bind10 --> bind1 v3 --"rdfs:label"--> v3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."schema:description".-> v2 end