Rename params to body in execute_sparql_query - #983
Merged
Merged
Conversation
LeMyst
force-pushed
the
change-execute_sparql_query
branch
2 times, most recently
from
July 4, 2026 15:15
5ac07b0 to
bccc59c
Compare
The SPARQL query is sent in the POST body (data=), not as URL parameters, so name the dict accordingly. The functional fix (data= instead of params=, no bogus multipart Content-Type) already landed in master via #1030. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
LeMyst
force-pushed
the
change-execute_sparql_query
branch
from
September 19, 2026 12:28
bccc59c to
07c48b7
Compare
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.
Rename the local
paramsdict tobodyinexecute_sparql_query, since the SPARQL query is sent in the POST body (data=), not as URL parameters. Updates the dict declaration, the debug log and thehelpers_session.post(..., data=body, ...)call.The functional fix originally in this PR (sending the query with
data=instead ofparams=, dropping the incorrectmultipart/form-dataContent-Type) already landed in master via #1030. After rebasing, only this cosmetic rename remains; no behaviour change.🤖 Generated with Claude Code