好的,假设我需要提取所有包含 2/3 成分的食谱。食谱表示为链接数据,这是使用的本体http://linkedrecipes.org/schema。我知道如何找到咖喱食谱:
PREFIX rdfs: <htp://ww.w3.org/2000/01/rdf-schema#>
PREFIX recipe: <htp://linkedrecipes.org/schema/>
SELECT ?label ?recipe
WHERE{
?food rdfs:label ?label2 .
?food recipe:ingredient_of ?recipe .
?recipe a recipe:Recipe .
?recipe rdfs:label ?label.
FILTER (REGEX(STR(?label2), 'curry', 'i'))
}
但是我怎么能找到咖喱和鸡肉的食谱呢?