Finding people that want a musical manifestation with the word -love- in its title
From Music Ontology Wiki
1 PREFIX mo: <http://purl.org/ontology/mo/>
2 PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
3 PREFIX foaf: <http://xmlns.com/foaf/0.1/>
4 SELECT ?name ?title
5 WHERE
6 {
7 ?seller a foaf:Person;
8 mo:sell_item ?album;
9 foaf:name ?name.
10 ?album a mo:Record;
11 dc:title ?title.
12 FILTER regex(?title, "love", "i")
13 }

