Skip to content

Commit

Permalink
#4503 - SPARQL query UI for developers
Browse files Browse the repository at this point in the history
  • Loading branch information
reckart committed Feb 17, 2024
1 parent 1f7a62d commit a77f77c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ <h5 class="modal-title">
<textarea wicket:id=query class="w-100" rows="10">
</textarea>
</div>
<button wicket:id="runQuery">Query</button>
<button wicket:id="runQuery" class="btn btn-primary">Query</button>
</form>
<div wicket:id="resultsContainer">
<table wicket:id="results" class="results-table w-100"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,10 @@ private static class QueryModel
{
private static final long serialVersionUID = -1407131006099282400L;

String query;
String query = """
SELECT ?s ?p ?o WHERE {
?s ?p ?o .
}
""";
}
}

0 comments on commit a77f77c

Please sign in to comment.