query-aa1957ecc82b43ff4e656afeb288c065
a specific url but property agnostic: P856I want to find an object with a specific url value but I don't know the property. So I need the following query but without mentioning
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT ?item WHERE {
?item wdt:P856 <https://www.wikidata.org/>.
}
LIMIT 1
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
c2([https://www.wikidata.org/]):::iri
v1 --"wdt:P856"--> c2