query-597cc55369367126468818592fd881c4
predicate. E.g. schema:about: With the Scarabocchio@
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?itemDescription
WHERE
{
[] schema:about ?item ; schema:isPartOf <https://en.wikipedia.org/> ; schema:name "Fernando Botero"@en
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;
v1("?item"):::projected
a1((" "))
c3([https://en.wikipedia.org/]):::iri
c5([sFernando Botero^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#langString>"]):::literal
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
a1 --"schema:about"--> v1
a1 --"schema:isPartOf"--> c3
a1 --"schema:name"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end