这是indexloc提供的服务,不要输入任何密码
Skip to content

Blank Nodes #8

@dpwrussell

Description

@dpwrussell

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

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions