graphdb-workbench-tests 2.7.6 → 2.8.0-RC1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. package/cypress.config.js +3 -0
  2. package/fixtures/cluster/2-nodes-cluster-group-status-deleted.json +30 -0
  3. package/fixtures/cluster/2-nodes-cluster-group-status.json +30 -0
  4. package/fixtures/cluster/3-nodes-cluster-group-status-after-replace.json +44 -0
  5. package/fixtures/cluster/3-nodes-cluster-group-status-building-snapshot.json +4 -1
  6. package/fixtures/cluster/3-nodes-cluster-group-status-receiving-snapshot.json +4 -1
  7. package/fixtures/cluster/3-nodes-cluster-group-status-sending-snapshot.json +4 -1
  8. package/fixtures/cluster/3-nodes-cluster-group-status-waiting-for-snapshot.json +4 -1
  9. package/fixtures/cluster/3-nodes-cluster-group-status.json +12 -3
  10. package/fixtures/cluster/4-nodes-cluster-group-status.json +58 -0
  11. package/fixtures/cluster/cluster-config.json +1 -0
  12. package/fixtures/cluster/cluster-node-status.json +4 -1
  13. package/fixtures/connectors/get-connectors.json +8 -0
  14. package/fixtures/connectors/get-retrieval-connector-0.json +1 -0
  15. package/fixtures/connectors/get-retrieval-connector.json +29 -0
  16. package/fixtures/connectors/get-ttyg-chatgpt-connectors.json +188 -0
  17. package/fixtures/locale-en.json +630 -61
  18. package/fixtures/namespaces/get-repository-starwars-namespaces.json +252 -0
  19. package/fixtures/remote-location/get-0-remote-locations.json +1 -2
  20. package/fixtures/remote-location/get-1-remote-locations.json +2 -4
  21. package/fixtures/remote-location/get-2-remote-locations.json +3 -6
  22. package/fixtures/remote-location/get-3-remote-locations.json +4 -8
  23. package/fixtures/remote-location/get-4-remote-locations.json +54 -0
  24. package/fixtures/remote-location/remote-location-status-in-cluster.json +1 -2
  25. package/fixtures/remote-location/remote-location-status-not-in-cluster.json +1 -2
  26. package/fixtures/remote-location/remote-locations-filter.json +1 -2
  27. package/fixtures/repositories/get-locations.json +67 -0
  28. package/fixtures/repositories/get-repositories.json +106 -0
  29. package/fixtures/repositories/get-repository-config-starwars-disabled-fts.json +201 -0
  30. package/fixtures/repositories/get-repository-config-starwars-enabled-fts.json +201 -0
  31. package/fixtures/repositories/get-ttyg-repositories.json +74 -0
  32. package/fixtures/similarity/get-similarity-indexes-0.json +1 -0
  33. package/fixtures/similarity/get-similarity-indexes.json +15 -0
  34. package/fixtures/similarity/get-ttyg-similarity-connectors.json +46 -0
  35. package/fixtures/ttyg/agent/create-agent.json +20 -0
  36. package/fixtures/ttyg/agent/get-agent-defaults.json +42 -0
  37. package/fixtures/ttyg/agent/get-agent-list-0.json +1 -0
  38. package/fixtures/ttyg/agent/get-agent-list-after-deleted.json +56 -0
  39. package/fixtures/ttyg/agent/get-agent-list-new-agent.json +22 -0
  40. package/fixtures/ttyg/agent/get-agent-list.json +77 -0
  41. package/fixtures/ttyg/agent/get-agent.json +25 -0
  42. package/fixtures/ttyg/chats/ask-question.json +25 -0
  43. package/fixtures/ttyg/chats/create/create-chat-response.json +16 -0
  44. package/fixtures/ttyg/chats/create/get-chats-after-create.json +12 -0
  45. package/fixtures/ttyg/chats/create/get-chats-before-create.json +7 -0
  46. package/fixtures/ttyg/chats/deleted-chat.json +3 -0
  47. package/fixtures/ttyg/chats/explain-response-1.json +59 -0
  48. package/fixtures/ttyg/chats/explain-response-2.json +59 -0
  49. package/fixtures/ttyg/chats/export-chat.json +34 -0
  50. package/fixtures/ttyg/chats/get-chat-list-0.json +1 -0
  51. package/fixtures/ttyg/chats/get-chat-list-with-deleted-chat.json +17 -0
  52. package/fixtures/ttyg/chats/get-chat-list-with-renamed-chat.json +22 -0
  53. package/fixtures/ttyg/chats/get-chat-list.json +22 -0
  54. package/fixtures/ttyg/chats/get-chat.json +199 -0
  55. package/fixtures/ttyg/chats/renamed-chat.json +4 -0
  56. package/integration/cluster/cluster-management.spec.js +0 -170
  57. package/integration/cluster/edit-cluster-nodes-modal.spec.js +425 -0
  58. package/integration/explore/graphs.overview.spec.js +4 -0
  59. package/integration/home/cookie-policy.spec.js +65 -0
  60. package/integration/home/create-repository.spec.js +35 -0
  61. package/integration/home/documentation-link.spec.js +60 -0
  62. package/integration/home/google-analytics.spec.js +60 -0
  63. package/integration/home/language-selector.spec.js +19 -0
  64. package/integration/home/rdf-resource-search.spec.js +192 -0
  65. package/integration/home/view-resource-autocomplete.spec.js +52 -0
  66. package/integration/home/workbench.home.spec.js +1 -277
  67. package/integration/import/import-user-data-file-upload.spec.js +13 -0
  68. package/integration/import/import-user-data.spec.js +8 -2
  69. package/integration/import/import-view.spec.js +6 -1
  70. package/integration/repository/attach-remote-location.spec.js +203 -0
  71. package/integration/repository/ontop-repository.spec.js +87 -1
  72. package/integration/repository/repositories.spec.js +4 -19
  73. package/integration/setup/my-settings.spec.js +2 -0
  74. package/integration/ttyg/agent-list.spec.js +76 -0
  75. package/integration/ttyg/agent-select-menu.spec.js +141 -0
  76. package/integration/ttyg/chat-list.spec.js +286 -0
  77. package/integration/ttyg/chat-panel.spec.js +175 -0
  78. package/integration/ttyg/clone-agent.spec.js +75 -0
  79. package/integration/ttyg/create-agent.spec.js +560 -0
  80. package/integration/ttyg/create-chat.spec.js +69 -0
  81. package/integration/ttyg/delete-agent.spec.js +51 -0
  82. package/integration/ttyg/edit-agent.spec.js +54 -0
  83. package/integration/ttyg/ttyg-permission.spec.js +66 -0
  84. package/integration/ttyg/ttyg-view.spec.js +75 -0
  85. package/npm-shrinkwrap.json +215 -220
  86. package/package.json +5 -6
  87. package/steps/alert-dialog-steps.js +25 -0
  88. package/steps/cluster/cluster-page-steps.js +8 -0
  89. package/steps/cluster/custer-nodes-configuration-steps.js +107 -0
  90. package/steps/home-steps.js +48 -5
  91. package/steps/import/import-steps.js +11 -11
  92. package/steps/modal-dialog-steps.js +8 -0
  93. package/steps/ontop-repository-steps.js +26 -0
  94. package/steps/repositories/attach-repository-steps.js +118 -0
  95. package/steps/repository-steps.js +53 -5
  96. package/steps/setup/settings-steps.js +17 -0
  97. package/steps/ttyg/chat-panel-steps.js +62 -0
  98. package/steps/ttyg/ttyg-agent-settings-modal.steps.js +462 -0
  99. package/steps/ttyg/ttyg-view-steps.js +333 -0
  100. package/steps/window-steps.js +5 -0
  101. package/stubs/cluster/cluster-stubs.js +127 -7
  102. package/stubs/cluster/remote-location-stubs.js +46 -0
  103. package/stubs/connector-stubs.js +39 -0
  104. package/stubs/environment-stubs.js +27 -0
  105. package/stubs/license-stubs.js +101 -0
  106. package/stubs/repositories/repositories-stubs.js +133 -0
  107. package/stubs/repositories-stub.js +15 -0
  108. package/stubs/security-stubs.js +7 -0
  109. package/stubs/similarity-index-stubs.js +32 -0
  110. package/stubs/stubs.js +4 -0
  111. package/stubs/ttyg/ttyg-stubs.js +166 -0
  112. package/support/commands.js +2 -0
  113. package/support/index.js +17 -0
  114. package/support/security-command.js +25 -0
  115. package/support/settings-commands.js +4 -5
  116. package/support/user-commands.js +31 -0
  117. package/steps/cluster/add-remote-location-dialog-steps.js +0 -11
  118. package/steps/cluster/create-cluster-dialog-steps.js +0 -39
  119. package/steps/cluster/replace-nodes-dialog-steps.js +0 -39
@@ -0,0 +1,252 @@
1
+ {
2
+ "head" : {
3
+ "vars" : [
4
+ "prefix",
5
+ "namespace"
6
+ ]
7
+ },
8
+ "results" : {
9
+ "bindings" : [
10
+ {
11
+ "prefix" : {
12
+ "type" : "literal",
13
+ "value" : "agg"
14
+ },
15
+ "namespace" : {
16
+ "type" : "literal",
17
+ "value" : "http://jena.apache.org/ARQ/function/aggregate#"
18
+ }
19
+ },
20
+ {
21
+ "prefix" : {
22
+ "type" : "literal",
23
+ "value" : "sail"
24
+ },
25
+ "namespace" : {
26
+ "type" : "literal",
27
+ "value" : "http://www.openrdf.org/config/sail#"
28
+ }
29
+ },
30
+ {
31
+ "prefix" : {
32
+ "type" : "literal",
33
+ "value" : "owl"
34
+ },
35
+ "namespace" : {
36
+ "type" : "literal",
37
+ "value" : "http://www.w3.org/2002/07/owl#"
38
+ }
39
+ },
40
+ {
41
+ "prefix" : {
42
+ "type" : "literal",
43
+ "value" : "geof"
44
+ },
45
+ "namespace" : {
46
+ "type" : "literal",
47
+ "value" : "http://www.opengis.net/def/function/geosparql/"
48
+ }
49
+ },
50
+ {
51
+ "prefix" : {
52
+ "type" : "literal",
53
+ "value" : "xsd"
54
+ },
55
+ "namespace" : {
56
+ "type" : "literal",
57
+ "value" : "http://www.w3.org/2001/XMLSchema#"
58
+ }
59
+ },
60
+ {
61
+ "prefix" : {
62
+ "type" : "literal",
63
+ "value" : "fn"
64
+ },
65
+ "namespace" : {
66
+ "type" : "literal",
67
+ "value" : "http://www.w3.org/2005/xpath-functions"
68
+ }
69
+ },
70
+ {
71
+ "prefix" : {
72
+ "type" : "literal",
73
+ "value" : "rdfs"
74
+ },
75
+ "namespace" : {
76
+ "type" : "literal",
77
+ "value" : "http://www.w3.org/2000/01/rdf-schema#"
78
+ }
79
+ },
80
+ {
81
+ "prefix" : {
82
+ "type" : "literal",
83
+ "value" : "spif"
84
+ },
85
+ "namespace" : {
86
+ "type" : "literal",
87
+ "value" : "http://spinrdf.org/spif#"
88
+ }
89
+ },
90
+ {
91
+ "prefix" : {
92
+ "type" : "literal",
93
+ "value" : "path"
94
+ },
95
+ "namespace" : {
96
+ "type" : "literal",
97
+ "value" : "http://www.ontotext.com/path#"
98
+ }
99
+ },
100
+ {
101
+ "prefix" : {
102
+ "type" : "literal",
103
+ "value" : "array"
104
+ },
105
+ "namespace" : {
106
+ "type" : "literal",
107
+ "value" : "http://www.w3.org/2005/xpath-functions/array"
108
+ }
109
+ },
110
+ {
111
+ "prefix" : {
112
+ "type" : "literal",
113
+ "value" : "apf"
114
+ },
115
+ "namespace" : {
116
+ "type" : "literal",
117
+ "value" : "http://jena.apache.org/ARQ/property#"
118
+ }
119
+ },
120
+ {
121
+ "prefix" : {
122
+ "type" : "literal",
123
+ "value" : "rep"
124
+ },
125
+ "namespace" : {
126
+ "type" : "literal",
127
+ "value" : "http://www.openrdf.org/config/repository#"
128
+ }
129
+ },
130
+ {
131
+ "prefix" : {
132
+ "type" : "literal",
133
+ "value" : "map"
134
+ },
135
+ "namespace" : {
136
+ "type" : "literal",
137
+ "value" : "http://www.w3.org/2005/xpath-functions/map"
138
+ }
139
+ },
140
+ {
141
+ "prefix" : {
142
+ "type" : "literal",
143
+ "value" : "sr"
144
+ },
145
+ "namespace" : {
146
+ "type" : "literal",
147
+ "value" : "http://www.openrdf.org/config/repository/sail#"
148
+ }
149
+ },
150
+ {
151
+ "prefix" : {
152
+ "type" : "literal",
153
+ "value" : "wgs"
154
+ },
155
+ "namespace" : {
156
+ "type" : "literal",
157
+ "value" : "http://www.w3.org/2003/01/geo/wgs84_pos#"
158
+ }
159
+ },
160
+ {
161
+ "prefix" : {
162
+ "type" : "literal",
163
+ "value" : "gn"
164
+ },
165
+ "namespace" : {
166
+ "type" : "literal",
167
+ "value" : "http://www.geonames.org/ontology#"
168
+ }
169
+ },
170
+ {
171
+ "prefix" : {
172
+ "type" : "literal",
173
+ "value" : "afn"
174
+ },
175
+ "namespace" : {
176
+ "type" : "literal",
177
+ "value" : "http://jena.apache.org/ARQ/function#"
178
+ }
179
+ },
180
+ {
181
+ "prefix" : {
182
+ "type" : "literal",
183
+ "value" : "list"
184
+ },
185
+ "namespace" : {
186
+ "type" : "literal",
187
+ "value" : "http://jena.apache.org/ARQ/list#"
188
+ }
189
+ },
190
+ {
191
+ "prefix" : {
192
+ "type" : "literal",
193
+ "value" : "rdf"
194
+ },
195
+ "namespace" : {
196
+ "type" : "literal",
197
+ "value" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
198
+ }
199
+ },
200
+ {
201
+ "prefix" : {
202
+ "type" : "literal",
203
+ "value" : "ofn"
204
+ },
205
+ "namespace" : {
206
+ "type" : "literal",
207
+ "value" : "http://www.ontotext.com/sparql/functions/"
208
+ }
209
+ },
210
+ {
211
+ "prefix" : {
212
+ "type" : "literal",
213
+ "value" : "geoext"
214
+ },
215
+ "namespace" : {
216
+ "type" : "literal",
217
+ "value" : "http://rdf.useekm.com/ext#"
218
+ }
219
+ },
220
+ {
221
+ "prefix" : {
222
+ "type" : "literal",
223
+ "value" : "graphdb"
224
+ },
225
+ "namespace" : {
226
+ "type" : "literal",
227
+ "value" : "http://www.ontotext.com/config/graphdb#"
228
+ }
229
+ },
230
+ {
231
+ "prefix" : {
232
+ "type" : "literal",
233
+ "value" : "math"
234
+ },
235
+ "namespace" : {
236
+ "type" : "literal",
237
+ "value" : "http://www.w3.org/2005/xpath-functions/math"
238
+ }
239
+ },
240
+ {
241
+ "prefix" : {
242
+ "type" : "literal",
243
+ "value" : "omgeo"
244
+ },
245
+ "namespace" : {
246
+ "type" : "literal",
247
+ "value" : "http://www.ontotext.com/owlim/geo#"
248
+ }
249
+ }
250
+ ]
251
+ }
252
+ }
@@ -9,7 +9,6 @@
9
9
  "local": true,
10
10
  "system": true,
11
11
  "errorMsg": null,
12
- "defaultRepository": null,
13
- "isInCluster": false
12
+ "defaultRepository": null
14
13
  }
15
14
  ]
@@ -9,8 +9,7 @@
9
9
  "local": true,
10
10
  "system": true,
11
11
  "errorMsg": null,
12
- "defaultRepository": null,
13
- "isInCluster": false
12
+ "defaultRepository": null
14
13
  },
15
14
  {
16
15
  "uri": "http://localhost:7201",
@@ -22,7 +21,6 @@
22
21
  "local": false,
23
22
  "system": false,
24
23
  "errorMsg": null,
25
- "defaultRepository": null,
26
- "isInCluster": false
24
+ "defaultRepository": null
27
25
  }
28
26
  ]
@@ -9,8 +9,7 @@
9
9
  "local": true,
10
10
  "system": true,
11
11
  "errorMsg": null,
12
- "defaultRepository": null,
13
- "isInCluster": false
12
+ "defaultRepository": null
14
13
  },
15
14
  {
16
15
  "uri": "http://localhost:7201",
@@ -22,8 +21,7 @@
22
21
  "local": false,
23
22
  "system": false,
24
23
  "errorMsg": null,
25
- "defaultRepository": null,
26
- "isInCluster": false
24
+ "defaultRepository": null
27
25
  },
28
26
  {
29
27
  "uri": "http://localhost:7202",
@@ -35,7 +33,6 @@
35
33
  "local": false,
36
34
  "system": false,
37
35
  "errorMsg": null,
38
- "defaultRepository": null,
39
- "isInCluster": false
36
+ "defaultRepository": null
40
37
  }
41
38
  ]
@@ -9,8 +9,7 @@
9
9
  "local": true,
10
10
  "system": true,
11
11
  "errorMsg": null,
12
- "defaultRepository": null,
13
- "isInCluster": true
12
+ "defaultRepository": null
14
13
  },
15
14
  {
16
15
  "uri": "http://localhost:7201",
@@ -22,8 +21,7 @@
22
21
  "local": false,
23
22
  "system": false,
24
23
  "errorMsg": null,
25
- "defaultRepository": null,
26
- "isInCluster": true
24
+ "defaultRepository": null
27
25
  },
28
26
  {
29
27
  "uri": "http://localhost:7202",
@@ -35,8 +33,7 @@
35
33
  "local": false,
36
34
  "system": false,
37
35
  "errorMsg": null,
38
- "defaultRepository": null,
39
- "isInCluster": true
36
+ "defaultRepository": null
40
37
  },
41
38
  {
42
39
  "uri": "http://localhost:7203",
@@ -48,7 +45,6 @@
48
45
  "local": false,
49
46
  "system": false,
50
47
  "errorMsg": null,
51
- "defaultRepository": null,
52
- "isInCluster": false
48
+ "defaultRepository": null
53
49
  }
54
50
  ]
@@ -0,0 +1,54 @@
1
+ [
2
+ {
3
+ "uri": "",
4
+ "label": "Local",
5
+ "username": null,
6
+ "password": null,
7
+ "authType": "none",
8
+ "active": true,
9
+ "local": true,
10
+ "system": true,
11
+ "errorMsg": null,
12
+ "defaultRepository": null,
13
+ "isInCluster": true
14
+ },
15
+ {
16
+ "uri": "http://pc-desktop:7203",
17
+ "label": "Remote (http://pc-desktop:7203)",
18
+ "username": "",
19
+ "password": "",
20
+ "authType": "signature",
21
+ "active": false,
22
+ "local": false,
23
+ "system": false,
24
+ "errorMsg": null,
25
+ "defaultRepository": null,
26
+ "isInCluster": false
27
+ },
28
+ {
29
+ "uri": "http://pc-desktop:7202",
30
+ "label": "Remote (http://pc-desktop:7202)",
31
+ "username": "",
32
+ "password": "",
33
+ "authType": "signature",
34
+ "active": false,
35
+ "local": false,
36
+ "system": false,
37
+ "errorMsg": null,
38
+ "defaultRepository": null,
39
+ "isInCluster": true
40
+ },
41
+ {
42
+ "uri": "http://pc-desktop:7233",
43
+ "label": "Remote (http://pc-desktop:7233)",
44
+ "username": "",
45
+ "password": "",
46
+ "authType": "signature",
47
+ "active": false,
48
+ "local": false,
49
+ "system": false,
50
+ "errorMsg": null,
51
+ "defaultRepository": null,
52
+ "isInCluster": false
53
+ }
54
+ ]
@@ -8,6 +8,5 @@
8
8
  "local": true,
9
9
  "system": true,
10
10
  "errorMsg": null,
11
- "defaultRepository": null,
12
- "isInCluster": true
11
+ "defaultRepository": null
13
12
  }
@@ -8,6 +8,5 @@
8
8
  "local": true,
9
9
  "system": true,
10
10
  "errorMsg": null,
11
- "defaultRepository": null,
12
- "isInCluster": false
11
+ "defaultRepository": null
13
12
  }
@@ -9,7 +9,6 @@
9
9
  "local": true,
10
10
  "system": true,
11
11
  "errorMsg": null,
12
- "defaultRepository": null,
13
- "isInCluster": false
12
+ "defaultRepository": null
14
13
  }
15
14
  ]
@@ -0,0 +1,67 @@
1
+ [
2
+ {
3
+ "uri": "http://local",
4
+ "label": "Remote Ontopic Instance (http://local)",
5
+ "username": "username",
6
+ "password": "password",
7
+ "authType": "basic",
8
+ "locationType": "ONTOPIC",
9
+ "active": false,
10
+ "local": false,
11
+ "system": false,
12
+ "errorMsg": null,
13
+ "defaultRepository": null
14
+ },
15
+ {
16
+ "uri": "http://localhost:7212",
17
+ "label": "Remote (http://localhost:7212)",
18
+ "username": null,
19
+ "password": null,
20
+ "authType": "none",
21
+ "locationType": "GDB",
22
+ "active": false,
23
+ "local": false,
24
+ "system": false,
25
+ "errorMsg": "Cannot connect to location Connect to localhost:7212 [localhost/127.0.0.1] failed: Connection refused (Connection refused) (Connect to localhost:7212 [localhost/127.0.0.1] failed: Connection refused (Connection refused)).",
26
+ "defaultRepository": null
27
+ },
28
+ {
29
+ "uri": "",
30
+ "label": "Local",
31
+ "username": null,
32
+ "password": null,
33
+ "authType": "none",
34
+ "locationType": null,
35
+ "active": true,
36
+ "local": true,
37
+ "system": true,
38
+ "errorMsg": null,
39
+ "defaultRepository": null
40
+ },
41
+ {
42
+ "uri": "http://localhost:7201",
43
+ "label": "Remote (http://localhost:7201)",
44
+ "username": null,
45
+ "password": null,
46
+ "authType": "none",
47
+ "locationType": "GDB",
48
+ "active": false,
49
+ "local": false,
50
+ "system": false,
51
+ "errorMsg": null,
52
+ "defaultRepository": null
53
+ },
54
+ {
55
+ "uri": "http://localhost:7202",
56
+ "label": "Remote (http://localhost:7202)",
57
+ "username": null,
58
+ "password": null,
59
+ "authType": "none",
60
+ "locationType": "GDB",
61
+ "active": false,
62
+ "local": false,
63
+ "system": false,
64
+ "errorMsg": null,
65
+ "defaultRepository": null
66
+ }
67
+ ]
@@ -0,0 +1,106 @@
1
+ {
2
+ "": [
3
+ {
4
+ "id": "test",
5
+ "title": "",
6
+ "uri": "http://localhost:8080/graphdb/repositories/test",
7
+ "externalUrl": "http://boyantonchev:9000/repositories/test",
8
+ "local": true,
9
+ "type": "graphdb",
10
+ "sesameType": "graphdb:SailRepository",
11
+ "location": "",
12
+ "readable": true,
13
+ "writable": true,
14
+ "unsupported": false,
15
+ "state": "RUNNING"
16
+ }
17
+ ],
18
+ "http://ghh": [],
19
+ "http://localhost:7201": [],
20
+ "http://localhost:7202": [
21
+ {
22
+ "id": "movies",
23
+ "title": "",
24
+ "uri": "http://localhost:7202/repositories/movies",
25
+ "externalUrl": "http://localhost:7202/repositories/movies",
26
+ "local": false,
27
+ "type": "graphdb",
28
+ "sesameType": "graphdb:SailRepository",
29
+ "location": "http://localhost:7202",
30
+ "readable": true,
31
+ "writable": true,
32
+ "unsupported": false,
33
+ "state": "RUNNING"
34
+ },
35
+ {
36
+ "id": "configurations",
37
+ "title": "",
38
+ "uri": "http://localhost:7202/repositories/configurations",
39
+ "externalUrl": "http://localhost:7202/repositories/configurations",
40
+ "local": false,
41
+ "type": "graphdb",
42
+ "sesameType": "graphdb:SailRepository",
43
+ "location": "http://localhost:7202",
44
+ "readable": true,
45
+ "writable": true,
46
+ "unsupported": false,
47
+ "state": "RUNNING"
48
+ },
49
+ {
50
+ "id": "schedules",
51
+ "title": "",
52
+ "uri": "http://localhost:7202/repositories/schedules",
53
+ "externalUrl": "http://localhost:7202/repositories/schedules",
54
+ "local": false,
55
+ "type": "graphdb",
56
+ "sesameType": "graphdb:SailRepository",
57
+ "location": "http://localhost:7202",
58
+ "readable": true,
59
+ "writable": true,
60
+ "unsupported": false,
61
+ "state": "RUNNING"
62
+ },
63
+ {
64
+ "id": "statuses",
65
+ "title": "",
66
+ "uri": "http://localhost:7202/repositories/statuses",
67
+ "externalUrl": "http://localhost:7202/repositories/statuses",
68
+ "local": false,
69
+ "type": "graphdb",
70
+ "sesameType": "graphdb:SailRepository",
71
+ "location": "http://localhost:7202",
72
+ "readable": true,
73
+ "writable": true,
74
+ "unsupported": false,
75
+ "state": "RUNNING"
76
+ },
77
+ {
78
+ "id": "home-repository-1716184222365",
79
+ "title": "",
80
+ "uri": "http://localhost:7202/repositories/home-repository-1716184222365",
81
+ "externalUrl": "http://localhost:7202/repositories/home-repository-1716184222365",
82
+ "local": false,
83
+ "type": "graphdb",
84
+ "sesameType": "graphdb:SailRepository",
85
+ "location": "http://localhost:7202",
86
+ "readable": true,
87
+ "writable": true,
88
+ "unsupported": false,
89
+ "state": "RUNNING"
90
+ },
91
+ {
92
+ "id": "repository-1716184200859",
93
+ "title": "",
94
+ "uri": "http://localhost:7202/repositories/repository-1716184200859",
95
+ "externalUrl": "http://localhost:7202/repositories/repository-1716184200859",
96
+ "local": false,
97
+ "type": "graphdb",
98
+ "sesameType": "graphdb:SailRepository",
99
+ "location": "http://localhost:7202",
100
+ "readable": true,
101
+ "writable": true,
102
+ "unsupported": false,
103
+ "state": "RUNNING"
104
+ }
105
+ ]
106
+ }