Skip to content

Commit

Permalink
ISSUE-145: Updated SPARQL query
Browse files Browse the repository at this point in the history
  • Loading branch information
HolgerKnublauch committed Apr 10, 2016
1 parent 4866242 commit b5f5b6d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion shacl/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ <h2>Revision History</h2>
The detailed list of changes and their diffs can be found in the <a href="https://github.com/w3c/data-shapes/commits/gh-pages/shacl/index.html">Git repository</a>.
</p>
<ul>
<li><b>2016-04-10</b>: Fixed SPARQL query of sh:minExclusive <a href="http://www.w3.org/2014/data-shapes/track/issues/145">ISSUE-145</a></li>
<li><b>2016-04-08</b>: Updated the definition and use of sh:hasShape <a href="http://www.w3.org/2014/data-shapes/track/issues/131">ISSUE-131</a></li>
<li><b>2016-04-08</b>: Renamed sh:notEquals to sh:disjoint <a href="http://www.w3.org/2014/data-shapes/track/issues/136">ISSUE-136</a></li>
<li><b>2016-04-07</b>: Added section on Invalid Shapes Graphs for <a href="http://www.w3.org/2014/data-shapes/track/issues/134">ISSUE-134</a></li>
Expand Down Expand Up @@ -1731,7 +1732,8 @@ <h4>sh:minExclusive, sh:minInclusive, sh:maxExclusive, sh:maxInclusive</h4>
SELECT $this ($this AS ?subject) $predicate (?value AS ?object)
WHERE {
$this $predicate ?value .
FILTER (!($value &gt; $minExclusive)) .
BIND (?value &gt; $minExclusive AS ?result) .
FILTER (!?result || !bound(?result)) .
}</pre>
</div>
<pre class="example-shapes">
Expand Down

0 comments on commit b5f5b6d

Please sign in to comment.