What datasets do I need to download from here in order to use specific properties in the WHERE clause?
For example, if I have the query:
SELECT ?item
WHERE
{?
?item dbo:location ?location
}
LIMIT 100
will return no results, because presumably I haven’t downloaded the appropriate dataset. So, as far as I understand, in order to use the right properties in a WHERE clause, I need to have some appropriate datasets downloaded.
Let me give you an example, just in case my question is not clear. A sufficient dataset In order to get some results back using the following query:
SELECT ?item
WHERE
{
?item foaf:gender ?gender
}
LIMIT 100
is the Person data
dataset.
Is there any source, where I can find what properties a dataset includes?
Please, feel free to ask if my question does not make sense.
Thanks.