Created
September 9, 2014 15:16
-
-
Save kendall/a1e3ff7b689a861f1d7a to your computer and use it in GitHub Desktop.
Matrix graph in RDF Turtle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:m1 a :Movie; :title "The Matrix"; :year "1999-03-31". | |
:m2 a :Movie; :title "The Matrix Reloaded"; :year "2003-05-07". | |
:m3 a :Movie; :title "The Matrix Revolutions"; :year "2003-10-27". | |
:neo a :Actor; :name "Keanu Reeves". | |
:morpheus a :Actor; :name "Larry F". | |
:trinity a :Actor; :name "CAM". | |
:neo :hasRole [:as "Neo"; :in :m1]. | |
:neo :hasRole [:as "Neo"; :in :m2]. | |
:neo :hasRole [:as "Neo"; :in :m2]. | |
:morpheus :hasRole [:as "Morpheus"; :in :m1]. | |
:morpheus :hasRole [:as "Morpheus"; :in :m2]. | |
:morpheus :hasRole [:as "Morpheus"; :in :m2]. | |
:trinity :hasRole [:as "Trinity"; :in :m1]. | |
:trinity :hasRole [:as "Trinity"; :in :m2]. | |
:trinity :hasRole [:as "Trinity"; :in :m2]. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment