Merge branch 'develop' of https://github.com/vivo-project/Vitro into develop
I have no idea what just happened. was behind. doing this merge to correct that so I can push a change.
This commit is contained in:
commit
7241929be0
3 changed files with 15 additions and 7 deletions
|
@ -37,9 +37,12 @@
|
|||
SELECT ?pred ?predLabel ?obj ?objLabel ?graph
|
||||
WHERE
|
||||
{
|
||||
{ <${entity.URI}> ?pred ?obj
|
||||
MINUS { GRAPH ?g { <${entity.URI}> ?pred ?obj } } }
|
||||
UNION
|
||||
{ GRAPH ?graph { <${entity.URI}> ?pred ?obj} }
|
||||
OPTIONAL { GRAPH ?h { ?obj rdfs:label ?objLabel } }
|
||||
OPTIONAL { GRAPH ?i { ?pred rdfs:label ?predLabel } }
|
||||
OPTIONAL { ?obj rdfs:label ?objLabel }
|
||||
OPTIONAL { ?pred rdfs:label ?predLabel }
|
||||
} ORDER BY ?graph ?pred
|
||||
limit 10000"/>
|
||||
<form action="admin/sparqlquery" method="get">
|
||||
|
@ -54,9 +57,12 @@
|
|||
SELECT ?sub ?subL ?pred ?predLabel ?graph
|
||||
WHERE
|
||||
{
|
||||
{ ?sub ?pred <${entity.URI}>
|
||||
MINUS { GRAPH ?g { ?sub ?pred <${entity.URI}> } } }
|
||||
UNION
|
||||
{ GRAPH ?graph { ?sub ?pred <${entity.URI}> } }
|
||||
OPTIONAL { GRAPH ?h { ?sub rdfs:label ?subL } }
|
||||
OPTIONAL { GRAPH ?i { ?pred rdfs:label ?predLabel } }
|
||||
OPTIONAL { ?sub rdfs:label ?subL }
|
||||
OPTIONAL { ?pred rdfs:label ?predLabel }
|
||||
} ORDER BY ?graph ?pred
|
||||
limit 10000"/>
|
||||
<form action="admin/sparqlquery" method="get">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue