You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -91,13 +91,21 @@ The configuration file follows a simple structure.
91
91
"queryFolder": "The base location of the queries, all query locations will start from this folder (relative to public folder.)",
92
92
"httpProxy": "The http proxy through which the requests will be rerouted. When left empty, the Comunica query engine will handle it. This is useful when CORS headers are not set (correctly) on the queried source.",
93
93
"introductionText": "The text that the app shows on the dashboard, which the app also shows when you first open it.",
94
+
"queryGroups" : [
95
+
{
96
+
"id": "A unique ID for the query group",
97
+
"name": "A name for the query group",
98
+
"icon": "The key to the icon for the query group. This is optional and a default menu icon will be used when left empty."
99
+
}
100
+
],
94
101
"queries": [
95
102
{
103
+
"id": "A unique ID for the query. This ID appears in the URL of the displayed result. Queries are ordered in the menu according to ascending ID.",
104
+
"queryGroupId": "ID of the query group too which this query belongs. If not given, the query is displayed outside existing groups.",
96
105
"queryLocation": "Path to the query location, relative to 'queryFolder'",
97
106
"name": "A name for the query",
98
107
"description": "Description of the query",
99
-
"id": "A unique ID for the query",
100
-
"icon": "The key to the icon for the query . This is optional and a default menu icon will be used when left empty.",
108
+
"icon": "The key to the icon for the query. This is optional and a default menu icon will be used when left empty.",
101
109
"comunicaContext": {
102
110
"sources": "Initial list of sources over which the query should be executed",
103
111
"useProxy": "True or false, whether the query should be executed through the proxy or not. This field is optional and defaults to false.",
0 commit comments