Skip to content

Online Address

Description

A website associated or owned by the party. Note that connections to external services (like IMDB, Instagram, etc) are stored within ExternalRecord nodes.

Label

:OnlineAddress

Properties

PropertyDescriptionType
idUnique identifier; a uuidstring
typeSee belowstring
addressstring
primaryboolean
createdBythe person or process that created the nodestring
createdDatedateTime
modifiedBythe person or process who last modified the nodestring
modifiedDatedateTime

Below are the potential online address types:

TypeNotes
Websiteurl
Blogurl
Artworkurl
ShowcaseLinkurl

Parties can have multiple online addresses of various types, any number of which can be active at one time and of course no limit to the number of inactive online addresses.

Relationships

The HAS_ONLINE_ADDRESS relationship connects parties to online addresses, and uses the standard relationship properties.

Examples

cypher
MATCH   (party:Party { id: $id } )
MERGE   (party)-[rel:HAS_ONLINE_ADDRESS {
          active: true,
          private: false,
          fromDate: date()
        }]->(address:OnlineAddress {
          type: "Blog",
          address: "https://johndoe.com/blog",
          primary: false
        })
RETURN  party.id,
        party.name,
        address{.*}

Confidential. For internal use only.