Skip to content

1.3 (build 17)

Compare
Choose a tag to compare
@johardi johardi released this 08 Jul 07:10
· 8 commits to master since this release

Release Notes:

Semantika Core Runtime 1.7. Uses the most updated Semantika release. More info about Semantika Core Runtime 1.7 release note.

Option Change

  • The option --config has a shortcut -c.
  • The option --output has a shortcut -o.
  • The option --query <path> is no longer supported. Use -sparql to input a query. For example:
$ ./semantika queryanswer -c empdb.cfg.xml -sparql '
SELECT ?fname ?lname ?salary ?hiredate 
WHERE
{ ?staff :firstName ?fname; 
         :lastName ?lname; 
         :birthDate ?birthdate; 
         :gender "F"; 
         :salaryAmount ?salary . 
  OPTIONAL { ?staff :hireDate ?hiredate }
  FILTER ( ?salary > 120000 && ?birthdate < '1952-12-31' ) }
'