Skip to content

Commit 08ee34b

Browse files
authored
Merge pull request #1662 from Rdataflow/patch-2
fix: improve preview speed on Stardog >= 10
2 parents dbe2b7e + b6b31bd commit 08ee34b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/rdf/query-cube-preview.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,9 @@ CONSTRUCT {
110110
VALUES ?cube { <${iri}> }
111111
?cube cube:observationConstraint/sh:property/sh:path ?observationPredicate .
112112
{ SELECT ?observation ?observationPredicate ?observationValue ?observationLabel ?observationPosition WHERE {
113-
{ SELECT ?observation WHERE {
113+
{
114+
#pragma evaluate on ## improve preview speed (wrt Stardog issue 2094 on Stardog >= 10 // see also SBAR-1122)
115+
SELECT ?observation WHERE {
114116
VALUES ?cube { <${iri}> }
115117
?cube cube:observationSet ?observationSet .
116118
?observationSet cube:observation ?observation .

0 commit comments

Comments
 (0)