All worked fine with this tutorial https://www.stardog.com/tutorials/using-virtual-graphs/ until executing the query below - returned zero rows.
- Do you know why?
BTW - I see the virtual graph in studio.
SELECT ?member ?name {
GRAPH <virtual://music> {
?band a :Band ;
:name "The Beatles" ;
:member ?member .
?member :name ?name .
}
}