We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rdf:type ?type
I have this query
PREFIX schema: <http://schema.org/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT * WHERE { ?s schema:contributor <https://data.knows.idlab.ugent.be/project/solidlab>. OPTIONAL { ?s schema:name ?name; rdf:type ?type } }
which takes long to execute, at least more than 500s. When I remove the rdf:type ?type from the OPTIONAL it takes around 21s.
OPTIONAL
PREFIX schema: <http://schema.org/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> SELECT DISTINCT * WHERE { ?s schema:contributor <https://data.knows.idlab.ugent.be/project/solidlab>. OPTIONAL { ?s schema:name ?name } }
I used the online client.
I used an online client.
The text was updated successfully, but these errors were encountered:
Some notes from mattermost:
That's a consequence of the cMatch semantics for determining whether or not to follow links to other pods.
This one is faster: https://comunica.github.io/comunica-feature-link-traversal-web-clients/builds/solid-single-pod/
Sorry, something went wrong.
No branches or pull requests
Issue type:
Description:
I have this query
which takes long to execute, at least more than 500s.
When I remove the
rdf:type ?type
from theOPTIONAL
it takes around 21s.I used the online client.
Environment:
I used an online client.
The text was updated successfully, but these errors were encountered: