query-b55e9414bd39a5c5f7f369f2795d1c9b
StoyanDim
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?s ?sLabel ?property ?propertyLabel ?o ?oLabel
WHERE
{
?s rdfs:label "optimization"@en .
?s ?p ?o .
?property wikibase:directClaim ?p .
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;
v3("?o"):::projected
v2("?p")
v4("?property"):::projected
v1("?s"):::projected
c5(["bd:serviceParam"]):::iri
c2([soptimization^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"rdfs:label"--> c2
v1 -->v2--> v3
v4 --"wikibase:directClaim"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end