Skip to content

Instantly share code, notes, and snippets.

@edgarRd
Last active February 10, 2016 20:20
Show Gist options
  • Save edgarRd/c20e5bd963e7526c54f3 to your computer and use it in GitHub Desktop.
Save edgarRd/c20e5bd963e7526c54f3 to your computer and use it in GitHub Desktop.
Property Graph Model in Stardog
@prefix : <http://api.stardog.com/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix stardog: <tag:stardog:api:> .
@prefix tp: <https://www.tinkerpop.com/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
tp:software-bd37dbca-b8d5-4989-abb7-58b82e14411e tp:name "ripple" ;
rdfs:label "software" ;
tp:lang "java" .
tp:person-5c8001e5-2bfa-4816-9a76-c69d77e19b62 tp:name "josh" ;
tp:age "32"^^xsd:int ;
rdfs:label "person" ;
tp:created-aac3d5b1-e5ff-460f-aaf3-267b3d11b710 tp:software-5964a0af-1bb4-4469-b362-6b7db5e617e2 ;
tp:created-33504b11-6393-4ab8-a762-280bf5914e0b tp:software-bd37dbca-b8d5-4989-abb7-58b82e14411e .
tp:software-5964a0af-1bb4-4469-b362-6b7db5e617e2 tp:name "lop" ;
rdfs:label "software" ;
tp:lang "java" .
<tag:stardog:api:id:21115cc5c645c6d35b7571acb4ff3756> rdfs:label "created" ;
tp:weight 4.0E-1 .
<tag:stardog:api:id:83775dcbec39e9ef064557f9e7fdee47> rdfs:label "created" ;
tp:weight 1.0E0 .
tp:person-c56860db-505d-4805-abd0-eecd7698149a tp:name "peter" ;
tp:age "35"^^xsd:int ;
rdfs:label "person" ;
tp:created-6d0837a6-c891-4419-b320-80136651a645 tp:software-5964a0af-1bb4-4469-b362-6b7db5e617e2 .
<tag:stardog:api:id:b751315c74567c781eb95dba9be6ba94> rdfs:label "created" ;
tp:weight 2.0E-1 .
tp:person-344dd010-dfc4-4356-aca8-f580c07f52d7 tp:name "vadas" ;
tp:age "27"^^xsd:int ;
rdfs:label "person" .
tp:person-adb00b0b-7912-4308-8be2-158af3d7879a tp:name "marko" ;
tp:age "29"^^xsd:int ;
rdfs:label "person" ;
tp:created-640f018f-a2ef-4486-9dea-a7add6b26ce8 tp:software-5964a0af-1bb4-4469-b362-6b7db5e617e2 ;
tp:knows-463a4473-6a1f-46df-a893-de0f4236ee83 tp:person-344dd010-dfc4-4356-aca8-f580c07f52d7 ;
tp:knows-22569d6b-b7bb-47c5-b0c4-71a2c78ef900 tp:person-5c8001e5-2bfa-4816-9a76-c69d77e19b62 .
<tag:stardog:api:id:b46d0155b1c5558598e8c3425432ab81> rdfs:label "created" ;
tp:weight 4.0E-1 .
<tag:stardog:api:id:19f7ef4ca398cf79850e3b6463f776bd> rdfs:label "knows" ;
tp:weight 5.0E-1 .
<tag:stardog:api:id:f1ed3591ab20391a1b169d85dc74be5a> rdfs:label "knows" ;
tp:weight 1.0E0 .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment