SPARQL query results
Query Infos
- Default graph URI: {{ default_graph_uri }}
{% if query %}
- SPARQL query evaluated:
{{ query }}
{% endif %}
- Number of query results on this page: {{ bindings | length }} solution bindings
- Plan loading time: {{ stats['import'] | round(4)}} milliseconds
- Plan serialization time: {{ stats['export'] | round(4)}} milliseconds
{% if next_page %}
Next page of results
{% endif %}
Query Results
{% for binding in bindings %}
{% for key, value in binding.items() %}
{% if value.startswith('http') %}
- {{ key }} {{value}}
{% else %}
- {{ key }} {{ value }}
{% endif %}
{% endfor %}
{% endfor %}