Skip to content

Commit

Permalink
most post processing
Browse files Browse the repository at this point in the history
  • Loading branch information
ali1k committed Oct 25, 2018
1 parent 8d9ff2e commit 3c64269
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion postprocessingQueries.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,32 @@ GRAPH <https://slidewiki.org> {
?s a <http://rdf.slidewiki.org/vocab/Deck> ; <http://purl.org/net/provenance/ns#createdBy> ?uname .
}
}
``````
```
```
INSERT {
GRAPH <https://slidewiki.org> {
?s <http://rdf.slidewiki.org/vocab/relatedSlide> ?rt .
}
} WHERE {
GRAPH <https://slidewiki.org> {
?s <http://rdf.slidewiki.org/vocab/related_object> ?ro .
?s <http://rdf.slidewiki.org/vocab/relatedTo> ?rt .
FILTER(?ro="slide")
}
}
```
```
INSERT {
GRAPH <https://slidewiki.org> {
?s <http://rdf.slidewiki.org/vocab/relatedDeck> ?rt .
}
} WHERE {
GRAPH <https://slidewiki.org> {
?s <http://rdf.slidewiki.org/vocab/related_object> ?ro .
?s <http://rdf.slidewiki.org/vocab/relatedTo> ?rt .
FILTER(?ro="deck")
}
}
```

0 comments on commit 3c64269

Please sign in to comment.