Open mvanbrab opened 8 months ago
A special query button that works very differently than the other queries:
The query is always 2 queries:
select {
$value ?p_out ?o_out ;
}
select {
?s_in ?p_in $value ;
}
where $value
is a value from a dropdown. The result is a consolidated table that has all results of the 2 queries, and you can click through
eg, for $value <ex.com/1>
subject | relation | object |
---|---|---|
<ex.com/1> | rdf:type | ceon:Product |
<ex.com/1> | ceon:component | <ex.com/4> |
<manu.com/me | ceon:makesProduct | <ex.com/1> |
You can click on any subject or object to get a similar table, but with a different main, eg. clicking on ex.com/4 gives
subject | relation | object |
---|---|---|
<ex.com/4> | rdf:type | ceon:Component |
<ex.com/1> | ceon:component | <ex.com/4> |
@bjdmeest Please specify