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
  • #49

Closed
Open
Created Dec 04, 2017 by Krzysztof Kutt@kkuttMaintainer

SPARQL: dot before the FILTER is required in Loki

If the SPARQL query contains FILTER you have to put the dot right after the last triple before the FILTER. This is not compatible with the SPARQL definition.

<pl format="sparql">
PREFIX wiki:   <>
SELECT ?page ?lang ?length
WHERE 
  { 
     ?page a "querytest".
     ?page wiki:test_lang ?lang.
     ?page wiki:test_length ?length.  <---- THIS DOT IS REQUIRED BY LOKI
     FILTER (?lang!='polish')
  }
ORDER BY INC(?length)
LIMIT 5
</pl>
Assignee
Assign to
Time tracking