[query2]
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX wine: <http://swat.cse.lehigh.edu/onto/wine.owl#>
SELECT ?X
WHERE (?X, rdf:type, wine:Wine) ,
(?X, wine:hasWineDescriptor, wine:Moderate)
[query3]
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX wine: <http://swat.cse.lehigh.edu/onto/wine.owl#>
SELECT ?X
WHERE (?X, rdf:type, wine:LateHarvest)
[query4]
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX wine: <http://swat.cse.lehigh.edu/onto/wine.owl#>
SELECT ?X
WHERE (?X, rdf:type, wine:Wine)
[query5]
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX wine: <http://swat.cse.lehigh.edu/onto/wine.owl#>
SELECT ?X
WHERE (?X, rdf:type, wine:Chardonnay) ,
(?X, wine:locatedIn, wine:NapaRegion)
[query6]
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX wine: <http://swat.cse.lehigh.edu/onto/wine.owl#>
SELECT ?X
WHERE (?X, rdf:type, wine:Wine) ,
(?X, wine:locatedIn, wine:CaliforniaRegion)
[query7]
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX wine: <http://swat.cse.lehigh.edu/onto/wine.owl#>
SELECT ?X
WHERE (?X, rdf:type, wine:Region) ,
(wine:SonomaRegion, wine:adjacentRegion, ?X)
[query8]
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX wine: <http://swat.cse.lehigh.edu/onto/wine.owl#>
SELECT ?X
WHERE (?X, rdf:type, wine:WhiteWine)
[query9]
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX wine: <http://swat.cse.lehigh.edu/onto/wine.owl#>
SELECT ?X
WHERE (?X, rdf:type, wine:Wine) ,
(wine:SauvignonBlancGrape, wine:madeIntoWine, ?X)