<tdclass="comment">Navigate to SPARQL query option on Site Administration page</td>
<td></td>
</tr>
<tr>
<td>clickAndWait</td>
<td>link=SPARQL query</td>
<td></td>
</tr>
<tr>
<td>assertTitle</td>
<td>SPARQL Query</td>
<td></td>
</tr>
<tr>
<td>selectWindow</td>
<td>null</td>
<td></td>
</tr>
<tr>
<td>comment</td>
<tdclass="comment">Enter query</td>
<td></td>
</tr>
<tr>
<td>type</td>
<td>query</td>
<td>PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#><br/>PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#><br/>PREFIX xsd: <http://www.w3.org/2001/XMLSchema#><br/>PREFIX owl: <http://www.w3.org/2002/07/owl#><br/>PREFIX swrl: <http://www.w3.org/2003/11/swrl#><br/>PREFIX swrlb: <http://www.w3.org/2003/11/swrlb#><br/>PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#><br/>PREFIX vivo: <http://vivo.library.cornell.edu/ns/0.1#><br/>PREFIX foaf: <http://xmlns.com/foaf/0.1/><br/>PREFIX core: <http://vivoweb.org/ontology/core#><br/>PREFIX bibo: <http://purl.org/ontology/bibo#><br/><br/># This query returns name and NameURI,<br/># remove the comment pound sign in front of lines to "uncomment" them<br/># uncomment the filter line and edit name text "Jill" to return specific people<br/><br/>SELECT ?personL ?person<br/>WHERE<br/>{<br/><br/> ?person rdf:type foaf:Person .<br/> ?person rdfs:label ?personL .<br/><br/> #filter(regex(?personL,"Jill","i"))<br/>}<br/>ORDER BY ?personL<br/>LIMIT 100</td>