We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d6cac9 commit 99cf5e2Copy full SHA for 99cf5e2
1 file changed
testsuites/lucene/src/main/java/org/eclipse/rdf4j/sail/lucene/AbstractLuceneSailSpinTest.java
@@ -290,9 +290,19 @@ public void testDistanceFunction()
290
}
291
292
/**
293
- * Complex query: <code>
294
- *
295
- * </code>
+ * Example for issue #771. Complex query: <br\> <code>
+ * prefix t: <urn:test.org/onto#>
+ * sb.append("prefix kw: <urn:test.org/key-words/>
296
+ *
297
+ * select ?term_string ?sub ?score where {
298
+ * ?pred_map rdfs:label "keyWord" ;
299
+ * t:column ?pred .
300
+ * [] ?pred ?term .
301
+ * bind(str(?term) as ?term_string) .
302
+ * (?term_string search:allMaches search:score) search:search (?sub ?score) .
303
+ * ?sub a t:Data .
304
+ * }
305
+ * </code>
306
*
307
* @throws Exception
308
*/
0 commit comments