davvalent commited on 2022-05-11 03:15:36
Showing 1 changed files, with 8 additions and 1 deletions.
| ... | ... |
@@ -4,7 +4,14 @@ |
| 4 | 4 |
|
| 5 | 5 |
const yasgui = new Yasgui(document.getElementById("yasgui"), {
|
| 6 | 6 |
requestConfig: {
|
| 7 |
- endpoint: "endpoint.php" |
|
| 7 |
+ endpoint: "endpoint.php", |
|
| 8 |
+ method: 'POST' |
|
| 8 | 9 |
}, |
| 9 | 10 |
copyEndpointOnNewTab: false, |
| 11 |
+ autofocus: true, |
|
| 12 |
+ tabName: "Requête", |
|
| 13 |
+ persistencyExpire: 604800, |
|
| 14 |
+ yasqe: {
|
|
| 15 |
+ value: "PREFIX owl: <http://www.w3.org/2002/07/owl#>\nPREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>\nPREFIX qdmtl: <http://onto.qdmtl.ca/>\nSELECT ?batiment ?label WHERE {\n\t?building a qdmtl:E24_Building ;\n\t\towl:sameAs ?batiment ;\n\t\trdfs:label ?label .\n}"
|
|
| 16 |
+ } |
|
| 10 | 17 |
}); |
| 11 | 18 |
\ No newline at end of file |
| 12 | 19 |