Skip to content

Instantly share code, notes, and snippets.

@danielhmills
Created February 24, 2021 14:17
Show Gist options
  • Save danielhmills/5b4090718ae93b6fccf910ab09fa2447 to your computer and use it in GitHub Desktop.
Save danielhmills/5b4090718ae93b6fccf910ab09fa2447 to your computer and use it in GitHub Desktop.
SELECT *
WHERE
{
?company dbp:type <http://dbpedia.org/resource/Public_company>;
rdfs:label ?companyName;
dbo:industry dbr:Automobile;
dbo:product/rdfs:label ?product.
FILTER(lang(?companyName)= 'en' && lang(?product) = 'en').
}
LIMIT 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment