Skip to content

Commit

Permalink
minor(rstream-query): minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Mar 6, 2021
1 parent 009b83b commit 0c7cc2d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/rstream-query/src/store.ts
Expand Up @@ -381,7 +381,8 @@ export class TripleStore implements Iterable<Triple>, IToDot {
spec.bind && xforms.push(bindVars(spec.bind));
spec.select && xforms.push(filterSolutions(spec.select));
if (xforms.length) {
query = query!.transform(comp.apply(null, <any>xforms));
// @ts-ignore
query = query!.transform(...xforms);
}
return query!;
}
Expand Down

0 comments on commit 0c7cc2d

Please sign in to comment.