-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add result aggregation for query templates (#283)
* Add QueryData class * Add test * Check for update queries * Move responsibility of QueryData to QueryHandler * Remove unused methods * Add tests * Fix authentication * Cleanup * Fix StringListQueryList * Modify QueryHandler and QueryData * Add executable query count and representative query count to QueryHandler * Update the saving template instances * Fix individual template instances results * Add some comments * Update schema * Change default behavior of query templates * Update tests * Fix configuration * Update documentation * Add some comments (to trigger GitHub actions) * Fix minor bug that caused an infinite loop * Change sparql endpoint for testing * Add javadocs * Refactor attribute name * Refactor method name * Add more javadocs * Update src/main/java/org/aksw/iguana/cc/query/QueryData.java Co-authored-by: Alexander Bigerl <[email protected]> * Revert "Update src/main/java/org/aksw/iguana/cc/query/QueryData.java" This reverts commit 8489f6e. * Delegate handling of query templates to an extra class * Trying to clarify comments * Add more comments * Change behavior of noOfQueries property in results * Remove unused import * Fix broken tests * Rename TemplateHandler to QueryTemplateHandler * Add javadoc string --------- Co-authored-by: Alexander Bigerl <[email protected]>
- Loading branch information
Showing
23 changed files
with
555 additions
and
194 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
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 |
---|---|---|
|
@@ -351,6 +351,9 @@ | |
}, | ||
"save": { | ||
"type": "boolean" | ||
}, | ||
"individualResults": { | ||
"type": "boolean" | ||
} | ||
}, | ||
"required": [ | ||
|
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
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
Oops, something went wrong.