PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX doc: <http://demo.openlinksw.com/schemas/doc#>
SELECT *
FROM <http://demo.openlinksw.com/Doc>
WHERE
{
?search rdf:type doc:Search .
OPTIONAL { ?search doc:anch ?anch} .
OPTIONAL { ?search doc:text ?text} .
}
LIMIT 100