Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • L loki
  • Project information
    • Project information
    • Activity
    • Labels
    • Planning hierarchy
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 45
    • Issues 45
    • List
    • Boards
    • Service Desk
    • Milestones
  • Deployments
    • Deployments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • Repository
  • Wiki
    • Wiki
  • Activity
  • Graph
  • Create a new issue
  • Commits
  • Issue Boards
Collapse sidebar
  • pro
  • loki
  • Issues
  • #36

Closed
Open
Created Oct 22, 2017 by Krzysztof Kutt@kkuttMaintainer

rdf:type is not considered a relation for SPARQL queries

SPARQL query:

">SELECT ?page ?rel ?obj
WHERE { 
  ?page ?rel ?obj .
}
</pl>```  
should list all triples in the wiki, but it does not list the category statements (`page a category .`).

To gather them, one should prepare a query that ask especially for them:  
```<pl format="sparql">
SELECT ?page ?obj
WHERE { 
  ?page a ?obj .
}
</pl>```  

It is a bug, because category statements should be listed by the first query.
Assignee
Assign to
Time tracking