--
-- --
You received this message because you are subscribed to the C&P "Stardog" group.
To post to this group, send email to sta...@clarkparsia.com
To unsubscribe from this group, send email to
stardog+u...@clarkparsia.com
For more options, visit this group at
http://groups.google.com/a/clarkparsia.com/group/stardog?hl=en
...<label style="display:inline-block;font-weight:700;min-height:1px;padding-left:15px;p
<label style="display:inline-block;font-weight:700;min-height:1px;padding-left:15px;p
...
--
The search functionality is related to the browse functionality, it is typed so it's not just a generic search; that means search is applied over individuals with a rdf:type that contain the given string literal in any of their properties. For your case, you’ll just need to add a rdf:type to <http://learningsparql.com/ns/addressbook#richard> so it can be searched, it can be any rdf:type.
Do the following in the query panel:
insert data {
<http://learningsparql.com/ns/addressbook#richard> a <http://xmlns.com/foaf/0.1/Person> .
}
Now search for richard, and you’ll see the instance in the typed results list.
If you need to search for a specific triple with a given string literal you can always use the query panel with the standard Lucene query syntax in your search queries, as mentioned before.
Cheers,
Edgar
--