I need a SPARQL query returning a specific Wikidata ID or a list of IDs. In real life such query is useless but I need it for testing purposes.
The easiest variant I could come up with was:
SELECT DISTINCT ?s
WHERE
{
?s ?p ?o
FILTER (?s = wd:Q151345).
}
I have to use DISTINCT
because ?s ?p ?o
matches every triple within Q151345, if I omit it it output the item as many times as many property-value pairs it has.
Is there any easier way?
With the keyword VALUES, it's possible to use multiple instances.
Demo : http://linkedwiki.com/query/Query_multiple_instance_of_in_same_query
Doc: https://www.w3.org/TR/sparql11-query/#inline-data