The SQT is a simple Tool which allows you to execute SPARQL-Queries within the browser and test the results.
Below you should see the results of your last configuration or a default configuration.
If you want to learn more about the SQT, head over to Github.
It seems like you tried to upload an invalid configuration!
Please make sure that your configuration is well formatted and contains a config and a tests part.
A minimal working example would be:
config:
url: http://dbpedia.org/sparql
tests:
- title: Working test
query: |
Select ?s ?p ?o {
?s ?p ?o .
} LIMIT 10
Tests:
Config:
Endpoint: {{test.config.url}}
DefaultGraph: {{test.config.graph}}
Timeout: {{test.config.timeout || 5000}}
Execution time:
{{test.$duration.list | beautifyDurations : test.$duration.max}}
Query:
{{test.query}}
Results:
{{test.$queryResults | replaceURIsWithPrefixes : prefixes}}