We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f0a043 commit 56b3440Copy full SHA for 56b3440
rdflib/plugins/sparql/evaluate.py
@@ -318,7 +318,7 @@ def _buildQueryStringForServiceCall(ctx, match):
318
parser.parseQuery(service_query)
319
except ParseException:
320
# This could be because we don't have a select around the service call.
321
- service_query = 'SELECT * WHERE {' + service_query + '}'
+ service_query = 'SELECT REDUCED * WHERE {' + service_query + '}'
322
for p in ctx.prologue.namespace_manager.store.namespaces():
323
service_query = 'PREFIX ' + p[0] + ':' + p[1].n3() + ' ' + service_query
324
# re add the base if one was defined
0 commit comments