Text search in GraphDB web interface?

Viewed 352

Is there a text search accessible through the GraphDB web interface, like there is for Blazegraph, Stardog, and Virtuoso faceted search?

For example:

enter image description here

I have gone through the Lucene connector and full-text exercises. I see how I can write a SPARQL search that includes text searching:

PREFIX luc: <http://www.ontotext.com/owlim/lucene#>
SELECT * {
  ?id luc:myTestIndex "ast*"
}

But is there a point-and-click search interface?

If I need to specify the predicates that trigger an indexing process, I would want to include :literalValue form my application ontology.

:Mark a :StackOverflowQuestioner .
:Mark :denotedBy :MarksName .
:MarksName rdfs:label "Mark's Name" .
:MarksName :literalValue "Mark Miller" .
1 Answers
Related