-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
condition to reload data is now based on sys property
- Loading branch information
Showing
4 changed files
with
15 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
#title:Search for lonely pets and try to find them a nice owner :) | ||
|
||
#comment: Insert the triplet using the data tab (you must run the web application locally) | ||
#This query shows pet without owners | ||
#This query shows pets with their owners if it exists | ||
#img:link-data | ||
|
||
#dbpedia:Harrison_Ford tto:pet ttr:SnuffMonkey. | ||
select ?pet ?owner where { | ||
?pet a / rdfs:subClassOf+ tto:Animal . | ||
filter not exists {?owner tto:pet ?pet} | ||
} | ||
optional {?owner tto:pet ?pet} | ||
} | ||
|
Binary file not shown.
This file contains 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