我目前根据低过敏性,目的,成本和能量水平为Android API制作关于寻找合适犬种的SPARQL查询。
我想要的结果是狗品种(beagle,basenji,dachshund wirehaired,saluki,dachshund缩图,whippet,如图4中的个体所见),hasPurpose is Hound
。
我尝试这个查询,但它没有显示我想要的内容。
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?individual ?hasPurpose
WHERE {
?individual rdf:rdfs hasPurpose:Hound
}