VIVO-784 remove duplicate results from "show statements".
The clause to include statements in the default graph was showing everything twice, without filtering the statements in the named graph. Don't know why. Talked with Brian, and decided to remove it.
This commit is contained in:
parent
ea9d1e739d
commit
ecbee098cb
1 changed files with 2 additions and 8 deletions
|
@ -37,10 +37,7 @@
|
|||
SELECT ?pred ?obj ?graph
|
||||
WHERE
|
||||
{
|
||||
{ <${entity.URI}> ?pred ?obj
|
||||
MINUS { GRAPH ?g { <${entity.URI}> ?pred ?obj } } }
|
||||
UNION
|
||||
{ GRAPH ?graph { <${entity.URI}> ?pred ?obj} }
|
||||
GRAPH ?graph { <${entity.URI}> ?pred ?obj}
|
||||
} ORDER BY ?graph ?pred
|
||||
limit 10000"/>
|
||||
<form action="admin/sparqlquery" method="get">
|
||||
|
@ -55,10 +52,7 @@
|
|||
SELECT ?sub ?pred ?graph
|
||||
WHERE
|
||||
{
|
||||
{ ?sub ?pred <${entity.URI}>
|
||||
MINUS { GRAPH ?g { ?sub ?pred <${entity.URI}> } } }
|
||||
UNION
|
||||
{ GRAPH ?graph { ?sub ?pred <${entity.URI}> } }
|
||||
GRAPH ?graph { ?sub ?pred <${entity.URI}> }
|
||||
} ORDER BY ?graph ?pred
|
||||
limit 10000"/>
|
||||
<form action="admin/sparqlquery" method="get">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue