Cypher Example:
CREATE
(`0` :Person {name:'Frederico Braga'}) ,
(`3` :Country {name:'Switzerland'}) ,
(`4` :Company {name:'HighPoint'}) ,
(`5` :Company {name:'Medidata'}) ,
(`6` :Skill {name:'graph databases'}) ,
(`7` :GraphDB {name:'My CV'}) ,
(`8` :Country {name:'Portugal'}) ,
(`0`)-[:`lives_in` {from:'01.05.2011',to:'today'}]->(`3`),
(`0`)-[:`works_for` {from:'01.02.2018',to:'today'}]->(`4`),
(`0`)-[:`worked_for` {from:'01.04.2017',to:'31.01.2018'}]->(`5`),
(`0`)-[:`has` ]->(`6`),
(`7`)-[:`requires` ]->(`6`),
(`0`)-[:`developed` ]->(`7`),
(`0`)-[:`born` {year:'1977'}]->(`8`),
(`7`)-[:`used` ]->(`6`)
RDF - Turtle Example:
## Turtle Start ##
@prefix foaf: .
@prefix schema: .
@prefix dbpedia: .
@prefix lex: .
@prefix : <#> .
: a foaf:ProfileDocument, schema:CreativeWork ;
schema:name "About Me" ;
schema:maintEntity :me .
:me a foaf:Person ;
foaf:name "Kingsley Idehen" ;
schema:knowsAbout [ a :Skill ; skos:related ;
schema:name "Linked Data" ;
:proficiencyLevel "High"
] ;
schema:worksFor ;
schema:birthPlace dbpedia:Manchester ;
schema:homeLocation lex:Massachusetts .
## Turtle End ##