Skip to content

Instantly share code, notes, and snippets.

@danielhmills
Last active June 8, 2022 19:31
Show Gist options
  • Save danielhmills/85e16b8fd0d836a436746e30e9d0a0d8 to your computer and use it in GitHub Desktop.
Save danielhmills/85e16b8fd0d836a436746e30e9d0a0d8 to your computer and use it in GitHub Desktop.
RDF Collection Demo: Trip
## Turtle Start ##
@prefix: <#>.
:A :route ([:to :B; :distance 50] );
:route ([:to :C; :distance 50]);
:route ([:to :D; :distance 20]).
:C a :Place;
:route ([:to :E; :distance 20] ).
:D a :Place;
:route ([:to :E; :distance 40] ).
## Turtle End ##
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment