Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Blank Nodes #8

Open
dpwrussell opened this issue Feb 23, 2018 · 1 comment
Open

Blank Nodes #8

dpwrussell opened this issue Feb 23, 2018 · 1 comment

Comments

@dpwrussell
Copy link

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" .
}

screen shot 2018-02-23 at 16 02 30

@dpwrussell
Copy link
Author

dpwrussell commented Feb 23, 2018

I guess I could always in my own data do this (or just not have blank nodes), but it doesn't help when exploring datasets where the blank node is just a dumb container.

:Address rdf:type rdfs:Class .
_:bobAddress rdf:type :Address .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants