Skip to content
New issue

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

Context sensitive suggestions don't seem to work with Named Graphs #107

Open
Stiksels opened this issue Oct 2, 2024 · 0 comments
Open

Comments

@Stiksels
Copy link

Stiksels commented Oct 2, 2024

The following query shows all 40 predicates from the full dataset as suggestion

SELECT *
WHERE {
  GRAPH ?metadataGraph {
    ?concept <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
    ?concept  
  }
}

Screenshot 2024-10-02 at 17 07 35

By removing the GRAPH clause, the context sensitive suggestions are correct:

SELECT *
WHERE {
    ?concept <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
    ?concept  
}

Screenshot 2024-10-02 at 17 09 01

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant