Skip to content
Snippets Groups Projects
  1. Sep 09, 2021
  2. Sep 08, 2021
  3. Sep 07, 2021
  4. Sep 01, 2021
  5. Jul 09, 2021
  6. Jun 07, 2021
  7. Dec 14, 2020
  8. Nov 04, 2020
  9. Nov 02, 2020
  10. Oct 30, 2020
  11. Oct 29, 2020
  12. Oct 27, 2020
  13. Sep 11, 2015
  14. Aug 11, 2014
  15. Dec 05, 2013
  16. Nov 19, 2013
  17. Nov 05, 2013
  18. Aug 23, 2013
  19. Jun 18, 2013
  20. Jun 12, 2013
  21. Jun 11, 2013
  22. Jun 10, 2013
    • alvaro's avatar
      Added support for CONSTRUCT queries in LODSPeaKr · aced42bc
      alvaro authored
      - If Query is a CONSTRUCT and client requests RDF/XML, TTL, NT, JSON -> works as usual
      - if query is a CONSTRUCT and client requests HTML
      -- Results hang from 'rdf', similar to 'models'
      
      ```
      {%for s in rdf.subjects%}
        <li>{{s.value}}</li>
      {%endfor%}
      ```
      
      Returns all the subjects. `{{s.value}}`, `{{s.curie}}`, etc.  work the same way as in models
      
      ```
      {%for p in rdf.ex__alvaro%}
        {{p.value}}
      {%endfor%}
      
      ```
      
      Returns all the predicates from `ex:alvaro` (the colon is translated to `__`). Assuming the namespace for `ex` is `http://example.org/`, this means all the rpedicates from `http://example.org/alvaro`.
      
      ```
      {%for o in rdf.ex__alvaro.rdfs__label%}
        {{o.value}}
      {%endfor%}
      
      ```
      
      returns all the objects from triples <http://example.org/alvaro> rdfs:label ?o
      
      TODO:
      
      - Blank nodes is unclear that are working now
      - Language, datatypes, etc. non-existant
      - Discussion: Combine all the models into one graph? or name them similar to 'models'? Currently adding more queries crashes
      - Probably a bunch of bugs
      aced42bc
  23. May 28, 2013
  24. May 16, 2013
Loading