Text search in GraphDB web interface?
Is there a text search available through the GraphDB web interface, such as searching for Blazegraph, Stardog, and Virtuoso?
For example:
I went through Lucene and full-text connector . I see how I can write a SPARQL search that includes a text search:
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 predicates that will initiate the indexing process, I would like to include a :literalValue
form of my applied ontology.
:Mark a :StackOverflowQuestioner .
:Mark :denotedBy :MarksName .
:MarksName rdfs:label "Mark Name" .
:MarksName :literalValue "Mark Miller" .
source to share
To set up autocomplete indexes, start GraphDB Workbench and open:
http://localhost:7200/autocomplete
The interface allows indexing of IRI text and the values โโof specific predicates such as rdfs:label
or skos:label
.
The index is updated on the fly with new data updates. It can be accessed:
- SPARQL Editor by pressing Ctrl | Cmd + Space, so the editor will autocomplete IRI
- Explore> Visual Graphs by typing a resource to start your exploration with
source to share