Fix co-author map query for QLever compatibility#2781
Open
HakanIST wants to merge 1 commit intoWDscholia:mainfrom
Open
Fix co-author map query for QLever compatibility#2781HakanIST wants to merge 1 commit intoWDscholia:mainfrom
HakanIST wants to merge 1 commit intoWDscholia:mainfrom
Conversation
Fix the SPARQL query in author_coauthor-map.sparql that was returning no results on the QLever-backed Scholia instance. Two issues were identified and fixed: 1. FILTER (?author != target:) does not work correctly on QLever for IRI inequality comparison. Changed to use FILTER (STR(?author) != STR(target:)) which works on both QLever and Wikidata SPARQL (Blazegraph). 2. GROUP BY ?organization ?geo ?count included the aggregate variable ?count, which is invalid SPARQL. QLever is stricter about this than Blazegraph. Removed ?count from GROUP BY. Fixes WDscholia#2780
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fix the SPARQL query in
author_coauthor-map.sparqlthat was returning no results on the QLever-backed Scholia instance.Fixes #2780
Changes
Two issues were identified and fixed:
1. IRI inequality filter incompatibility with QLever
FILTER (?author != target:)does not work correctly on QLever for IRI inequality comparison. QLever silently returns empty results instead of filtering properly.Fix: Changed to
FILTER (STR(?author) != STR(target:))which works correctly on both QLever and Wikidata SPARQL (Blazegraph).2. Invalid GROUP BY clause
GROUP BY ?organization ?geo ?countincluded the aggregate variable?count(defined asCOUNT(DISTINCT ?work)), which is technically invalid SPARQL. While Blazegraph tolerates this, QLever is stricter.Fix: Removed
?countfrom theGROUP BYclause, leavingGROUP BY ?organization ?geo.Testing