Open
Description
I am wondering if there is a plan to do anything with blank nodes? It seems that they are oft used in RDF as containers. At the moment if there are blank nodes with properties in a dataset being explored, this does not get visualized at all.
Thanks
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX : <http://example.org/schema#>
PREFIX d: <http://example.org/data#>
INSERT DATA {
:User rdf:type rdfs:Class .
d:bob rdf:type :User ;
:name "Bob" ;
:address _:bobAddress .
_:bobAddress :addr1 "123 Some Street" ;
:addr2 "Apartment 1" ;
:city "Sometown" ;
:postcode "12345" ;
:country "Somecountry" .
d:jim rdf:type :User ;
:name "Jim" ;
:address _:jimAddress .
_:jimAddress :addr1 "456 Someother Street" ;
:addr2 "Apartment 2" ;
:city "Sometown" ;
:postcode "54321" ;
:country "Somecountry" .
}