graphdb-workbench-tests 2.8.0-Test → 2.8.0
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.
- package/cypress.config.js +3 -0
- package/fixtures/cluster/2-nodes-cluster-group-status-deleted.json +30 -0
- package/fixtures/cluster/2-nodes-cluster-group-status.json +30 -0
- package/fixtures/cluster/3-nodes-cluster-group-status-after-replace.json +44 -0
- package/fixtures/cluster/3-nodes-cluster-group-status-building-snapshot.json +4 -1
- package/fixtures/cluster/3-nodes-cluster-group-status-receiving-snapshot.json +4 -1
- package/fixtures/cluster/3-nodes-cluster-group-status-sending-snapshot.json +4 -1
- package/fixtures/cluster/3-nodes-cluster-group-status-waiting-for-snapshot.json +4 -1
- package/fixtures/cluster/3-nodes-cluster-group-status-with-tag.json +47 -0
- package/fixtures/cluster/3-nodes-cluster-group-status.json +12 -3
- package/fixtures/cluster/4-nodes-cluster-group-status.json +58 -0
- package/fixtures/cluster/cluster-config.json +1 -0
- package/fixtures/cluster/cluster-node-status.json +4 -1
- package/fixtures/cluster/no-cluster-group-status.json +2 -1
- package/fixtures/cluster/no-cluster-node-status.json +2 -1
- package/fixtures/cluster/save-cluster-configuration-response.json +10 -0
- package/fixtures/connectors/get-retrieval-connector.json +1 -1
- package/fixtures/connectors/get-ttyg-chatgpt-connectors.json +188 -0
- package/fixtures/locale-en.json +382 -101
- package/fixtures/remote-location/get-0-remote-locations.json +1 -2
- package/fixtures/remote-location/get-1-remote-locations.json +2 -4
- package/fixtures/remote-location/get-2-remote-locations.json +3 -6
- package/fixtures/remote-location/get-3-remote-locations.json +4 -8
- package/fixtures/remote-location/get-4-remote-locations.json +54 -0
- package/fixtures/remote-location/remote-location-status-in-cluster.json +1 -2
- package/fixtures/remote-location/remote-location-status-not-in-cluster.json +1 -2
- package/fixtures/remote-location/remote-locations-filter.json +1 -2
- package/fixtures/repositories/get-locations.json +5 -10
- package/fixtures/repositories/get-ttyg-repositories.json +28 -0
- package/fixtures/security/get-admin-user.json +22 -0
- package/fixtures/similarity/get-ttyg-similarity-connectors.json +46 -0
- package/fixtures/ttyg/agent/create-agent.json +2 -1
- package/fixtures/ttyg/agent/get-agent-defaults.json +42 -0
- package/fixtures/ttyg/agent/get-agent-list-after-deleted.json +1 -1
- package/fixtures/ttyg/agent/get-agent-list-new-agent.json +2 -73
- package/fixtures/ttyg/agent/get-agent-list.json +1 -1
- package/fixtures/ttyg/agent/get-agent.json +25 -0
- package/fixtures/ttyg/chats/ask-question.json +25 -0
- package/fixtures/ttyg/chats/create/create-chat-response.json +16 -0
- package/fixtures/ttyg/chats/create/get-chats-after-create.json +12 -0
- package/fixtures/ttyg/chats/create/get-chats-before-create.json +7 -0
- package/fixtures/ttyg/chats/explain-response-1.json +59 -0
- package/fixtures/ttyg/chats/explain-response-2.json +59 -0
- package/fixtures/ttyg/chats/get-chat.json +199 -0
- package/integration/cluster/cluster-configuration/cluster-configuration-multi-region.spec.js +97 -0
- package/integration/cluster/cluster-configuration/cluster-configuration-nodes.spec.js +70 -0
- package/integration/cluster/cluster-configuration/cluster-configuration-properties.spec.js +95 -0
- package/integration/cluster/cluster-configuration/cluster-configuration.spec.js +38 -0
- package/integration/cluster/cluster-legend.spec.js +1 -0
- package/integration/cluster/edit-cluster-nodes-modal.spec.js +425 -0
- package/integration/explore/graphs.overview.spec.js +4 -0
- package/integration/explore/similariti-index-create.spec.js +1 -1
- package/integration/explore/similarity-index.spec.js +1 -1
- package/integration/explore/visual-graph/visual.graph.spec.js +31 -35
- package/integration/home/cookie-policy.spec.js +83 -0
- package/integration/home/create-repository.spec.js +35 -0
- package/integration/home/documentation-link.spec.js +60 -0
- package/integration/home/google-analytics.spec.js +60 -0
- package/integration/home/language-selector.spec.js +19 -0
- package/integration/home/rdf-resource-search.spec.js +192 -0
- package/integration/home/view-resource-autocomplete.spec.js +52 -0
- package/integration/home/workbench.home.spec.js +1 -277
- package/integration/import/import-user-data-file-upload.spec.js +13 -0
- package/integration/import/import-user-data.spec.js +6 -1
- package/integration/import/import-view.spec.js +6 -1
- package/integration/license/license.spec.js +26 -0
- package/integration/repository/attach-remote-location.spec.js +94 -40
- package/integration/repository/repositories.spec.js +1 -7
- package/integration/setup/my-settings.spec.js +13 -21
- package/integration/ttyg/agent-list.spec.js +27 -25
- package/integration/ttyg/agent-select-menu.spec.js +18 -16
- package/integration/ttyg/chat-list.spec.js +72 -9
- package/integration/ttyg/chat-panel.spec.js +106 -10
- package/integration/ttyg/clone-agent.spec.js +8 -4
- package/integration/ttyg/create-agent.spec.js +303 -51
- package/integration/ttyg/create-chat.spec.js +68 -0
- package/integration/ttyg/delete-agent.spec.js +6 -5
- package/integration/ttyg/edit-agent.spec.js +16 -5
- package/integration/ttyg/ttyg-permission.spec.js +66 -0
- package/integration/ttyg/ttyg-view.spec.js +8 -4
- package/npm-shrinkwrap.json +215 -220
- package/package.json +5 -6
- package/steps/alert-dialog-steps.js +25 -0
- package/steps/cluster/cluster-configuration-steps.js +173 -5
- package/steps/cluster/cluster-page-steps.js +8 -0
- package/steps/cluster/custer-nodes-configuration-steps.js +107 -0
- package/steps/home-steps.js +48 -5
- package/steps/import/import-steps.js +11 -7
- package/steps/license-steps.js +25 -0
- package/steps/repositories/attach-repository-steps.js +33 -0
- package/steps/repository-steps.js +26 -11
- package/steps/setup/settings-steps.js +17 -0
- package/steps/ttyg/chat-panel-steps.js +31 -6
- package/steps/ttyg/ttyg-agent-settings-modal.steps.js +82 -4
- package/steps/ttyg/ttyg-view-steps.js +77 -3
- package/steps/visual-graph-steps.js +29 -1
- package/stubs/cluster/cluster-stubs.js +162 -7
- package/stubs/cluster/remote-location-stubs.js +46 -0
- package/stubs/connector-stubs.js +24 -0
- package/stubs/environment-stubs.js +27 -0
- package/stubs/license-stubs.js +108 -0
- package/stubs/repositories/repositories-stubs.js +11 -8
- package/stubs/repositories-stub.js +15 -0
- package/stubs/security-stubs.js +29 -0
- package/stubs/similarity-index-stubs.js +25 -0
- package/stubs/stubs.js +4 -0
- package/stubs/ttyg/ttyg-stubs.js +79 -40
- package/support/commands.js +2 -0
- package/support/index.js +18 -0
- package/support/security-command.js +25 -0
- package/support/settings-commands.js +4 -5
- package/support/user-commands.js +31 -0
- package/fixtures/ttyg/chats/get-chat-1.json +0 -43
- package/integration/cluster/cluster-management.spec.js +0 -220
- package/steps/cluster/add-remote-location-dialog-steps.js +0 -11
- package/steps/cluster/create-cluster-dialog-steps.js +0 -39
- package/steps/cluster/replace-nodes-dialog-steps.js +0 -39
package/cypress.config.js
CHANGED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"address": "pc-desktop:7300",
|
|
4
|
+
"nodeState": "LEADER",
|
|
5
|
+
"term": 2,
|
|
6
|
+
"syncStatus": {
|
|
7
|
+
"pc-desktop:7302": "IN_SYNC"
|
|
8
|
+
},
|
|
9
|
+
"lastLogTerm": 0,
|
|
10
|
+
"lastLogIndex": 0,
|
|
11
|
+
"endpoint": "http://pc-desktop:7200",
|
|
12
|
+
"recoveryStatus": {},
|
|
13
|
+
"topologyStatus": {
|
|
14
|
+
"state": "PRIMARY_NODE"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"address": "pc-desktop:7302",
|
|
19
|
+
"nodeState": "FOLLOWER",
|
|
20
|
+
"term": 2,
|
|
21
|
+
"syncStatus": {},
|
|
22
|
+
"lastLogTerm": 0,
|
|
23
|
+
"lastLogIndex": 0,
|
|
24
|
+
"endpoint": "http://pc-desktop:7202",
|
|
25
|
+
"recoveryStatus": {},
|
|
26
|
+
"topologyStatus": {
|
|
27
|
+
"state": "PRIMARY_NODE"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
]
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"address": "pc-desktop:7300",
|
|
4
|
+
"nodeState": "LEADER",
|
|
5
|
+
"term": 2,
|
|
6
|
+
"syncStatus": {
|
|
7
|
+
"pc-desktop:7303": "IN_SYNC"
|
|
8
|
+
},
|
|
9
|
+
"lastLogTerm": 0,
|
|
10
|
+
"lastLogIndex": 0,
|
|
11
|
+
"endpoint": "http://pc-desktop:7200",
|
|
12
|
+
"recoveryStatus": {},
|
|
13
|
+
"topologyStatus": {
|
|
14
|
+
"state": "PRIMARY_NODE"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"address": "pc-desktop:7303",
|
|
19
|
+
"nodeState": "FOLLOWER",
|
|
20
|
+
"term": 2,
|
|
21
|
+
"syncStatus": {},
|
|
22
|
+
"lastLogTerm": 0,
|
|
23
|
+
"lastLogIndex": 0,
|
|
24
|
+
"endpoint": "http://pc-desktop:7203",
|
|
25
|
+
"recoveryStatus": {},
|
|
26
|
+
"topologyStatus": {
|
|
27
|
+
"state": "PRIMARY_NODE"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
]
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"address": "pc-desktop:7333",
|
|
4
|
+
"nodeState": "FOLLOWER",
|
|
5
|
+
"term": 2,
|
|
6
|
+
"syncStatus": {},
|
|
7
|
+
"lastLogTerm": 0,
|
|
8
|
+
"lastLogIndex": 0,
|
|
9
|
+
"endpoint": "http://pc-desktop:7233",
|
|
10
|
+
"recoveryStatus": {},
|
|
11
|
+
"topologyStatus": {
|
|
12
|
+
"state": "PRIMARY_NODE"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"address": "pc-desktop:7302",
|
|
17
|
+
"nodeState": "LEADER",
|
|
18
|
+
"term": 2,
|
|
19
|
+
"syncStatus": {
|
|
20
|
+
"pc-desktop:7333": "IN_SYNC",
|
|
21
|
+
"pc-desktop:7303": "IN_SYNC"
|
|
22
|
+
},
|
|
23
|
+
"lastLogTerm": 0,
|
|
24
|
+
"lastLogIndex": 0,
|
|
25
|
+
"endpoint": "http://pc-desktop:7202",
|
|
26
|
+
"recoveryStatus": {},
|
|
27
|
+
"topologyStatus": {
|
|
28
|
+
"state": "PRIMARY_NODE"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"address": "pc-desktop:7303",
|
|
33
|
+
"nodeState": "FOLLOWER",
|
|
34
|
+
"term": 2,
|
|
35
|
+
"syncStatus": {},
|
|
36
|
+
"lastLogTerm": 0,
|
|
37
|
+
"lastLogIndex": 0,
|
|
38
|
+
"endpoint": "http://pc-desktop:7203",
|
|
39
|
+
"recoveryStatus": {},
|
|
40
|
+
"topologyStatus": {
|
|
41
|
+
"state": "PRIMARY_NODE"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
]
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"address": "pc-desktop:7300",
|
|
4
|
+
"nodeState": "FOLLOWER",
|
|
5
|
+
"term": 2,
|
|
6
|
+
"syncStatus": {},
|
|
7
|
+
"lastLogTerm": 0,
|
|
8
|
+
"lastLogIndex": 0,
|
|
9
|
+
"endpoint": "http://pc-desktop:7200",
|
|
10
|
+
"recoveryStatus": {},
|
|
11
|
+
"topologyStatus": {
|
|
12
|
+
"state": "PRIMARY_NODE"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"address": "pc-desktop:7301",
|
|
17
|
+
"nodeState": "LEADER",
|
|
18
|
+
"term": 2,
|
|
19
|
+
"syncStatus": {
|
|
20
|
+
"pc-desktop:7300": "IN_SYNC",
|
|
21
|
+
"pc-desktop:7302": "IN_SYNC"
|
|
22
|
+
},
|
|
23
|
+
"lastLogTerm": 0,
|
|
24
|
+
"lastLogIndex": 0,
|
|
25
|
+
"endpoint": "http://pc-desktop:7201",
|
|
26
|
+
"recoveryStatus": {},
|
|
27
|
+
"topologyStatus": {
|
|
28
|
+
"state": "PRIMARY_NODE",
|
|
29
|
+
"primaryTags": {
|
|
30
|
+
"test": 0
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"address": "pc-desktop:7302",
|
|
36
|
+
"nodeState": "FOLLOWER",
|
|
37
|
+
"term": 2,
|
|
38
|
+
"syncStatus": {},
|
|
39
|
+
"lastLogTerm": 0,
|
|
40
|
+
"lastLogIndex": 0,
|
|
41
|
+
"endpoint": "http://pc-desktop:7202",
|
|
42
|
+
"recoveryStatus": {},
|
|
43
|
+
"topologyStatus": {
|
|
44
|
+
"state": "PRIMARY_NODE"
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
]
|
|
@@ -7,7 +7,10 @@
|
|
|
7
7
|
"lastLogTerm": 0,
|
|
8
8
|
"lastLogIndex": 0,
|
|
9
9
|
"endpoint": "http://pc-desktop:7200",
|
|
10
|
-
"recoveryStatus": {}
|
|
10
|
+
"recoveryStatus": {},
|
|
11
|
+
"topologyStatus": {
|
|
12
|
+
"state": "PRIMARY_NODE"
|
|
13
|
+
}
|
|
11
14
|
},
|
|
12
15
|
{
|
|
13
16
|
"address": "pc-desktop:7301",
|
|
@@ -20,7 +23,10 @@
|
|
|
20
23
|
"lastLogTerm": 0,
|
|
21
24
|
"lastLogIndex": 0,
|
|
22
25
|
"endpoint": "http://pc-desktop:7201",
|
|
23
|
-
"recoveryStatus": {}
|
|
26
|
+
"recoveryStatus": {},
|
|
27
|
+
"topologyStatus": {
|
|
28
|
+
"state": "PRIMARY_NODE"
|
|
29
|
+
}
|
|
24
30
|
},
|
|
25
31
|
{
|
|
26
32
|
"address": "pc-desktop:7302",
|
|
@@ -30,6 +36,9 @@
|
|
|
30
36
|
"lastLogTerm": 0,
|
|
31
37
|
"lastLogIndex": 0,
|
|
32
38
|
"endpoint": "http://pc-desktop:7202",
|
|
33
|
-
"recoveryStatus": {}
|
|
39
|
+
"recoveryStatus": {},
|
|
40
|
+
"topologyStatus": {
|
|
41
|
+
"state": "PRIMARY_NODE"
|
|
42
|
+
}
|
|
34
43
|
}
|
|
35
44
|
]
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"address": "pc-desktop:7300",
|
|
4
|
+
"nodeState": "FOLLOWER",
|
|
5
|
+
"term": 2,
|
|
6
|
+
"syncStatus": {},
|
|
7
|
+
"lastLogTerm": 0,
|
|
8
|
+
"lastLogIndex": 0,
|
|
9
|
+
"endpoint": "http://pc-desktop:7200",
|
|
10
|
+
"recoveryStatus": {},
|
|
11
|
+
"topologyStatus": {
|
|
12
|
+
"state": "PRIMARY_NODE"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"address": "pc-desktop:7301",
|
|
17
|
+
"nodeState": "LEADER",
|
|
18
|
+
"term": 2,
|
|
19
|
+
"syncStatus": {
|
|
20
|
+
"pc-desktop:7300": "IN_SYNC",
|
|
21
|
+
"pc-desktop:7302": "IN_SYNC",
|
|
22
|
+
"pc-desktop:7303": "IN_SYNC"
|
|
23
|
+
},
|
|
24
|
+
"lastLogTerm": 0,
|
|
25
|
+
"lastLogIndex": 0,
|
|
26
|
+
"endpoint": "http://pc-desktop:7201",
|
|
27
|
+
"recoveryStatus": {},
|
|
28
|
+
"topologyStatus": {
|
|
29
|
+
"state": "PRIMARY_NODE"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"address": "pc-desktop:7302",
|
|
34
|
+
"nodeState": "FOLLOWER",
|
|
35
|
+
"term": 2,
|
|
36
|
+
"syncStatus": {},
|
|
37
|
+
"lastLogTerm": 0,
|
|
38
|
+
"lastLogIndex": 0,
|
|
39
|
+
"endpoint": "http://pc-desktop:7202",
|
|
40
|
+
"recoveryStatus": {},
|
|
41
|
+
"topologyStatus": {
|
|
42
|
+
"state": "PRIMARY_NODE"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"address": "pc-desktop:7303",
|
|
47
|
+
"nodeState": "FOLLOWER",
|
|
48
|
+
"term": 2,
|
|
49
|
+
"syncStatus": {},
|
|
50
|
+
"lastLogTerm": 0,
|
|
51
|
+
"lastLogIndex": 0,
|
|
52
|
+
"endpoint": "http://pc-desktop:7203",
|
|
53
|
+
"recoveryStatus": {},
|
|
54
|
+
"topologyStatus": {
|
|
55
|
+
"state": "PRIMARY_NODE"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
]
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"electionMinTimeout": 5000,
|
|
3
|
+
"electionRangeTimeout": 3000,
|
|
4
|
+
"heartbeatInterval": 1500,
|
|
5
|
+
"messageSizeKB": 64,
|
|
6
|
+
"verificationTimeout": 1200,
|
|
7
|
+
"transactionLogMaximumSizeGB": 50,
|
|
8
|
+
"batchUpdateInterval": 2000,
|
|
9
|
+
"nodes": ["pc-desktop:7300", "pc-desktop:7301", "pc-desktop:7302"]
|
|
10
|
+
}
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
{
|
|
2
|
+
"starwars": [
|
|
3
|
+
{
|
|
4
|
+
"values": {
|
|
5
|
+
"retrievalBearerToken": "<replace-this-with-actual-value>",
|
|
6
|
+
"types": [
|
|
7
|
+
"http://www.ontotext.com/example/wine#Wine"
|
|
8
|
+
],
|
|
9
|
+
"retrievalUrl": "http://localhost:8000",
|
|
10
|
+
"fields": [
|
|
11
|
+
{
|
|
12
|
+
"propertyChain": [
|
|
13
|
+
"localName()"
|
|
14
|
+
],
|
|
15
|
+
"fieldName": "subject"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"propertyChain": [
|
|
19
|
+
"$self"
|
|
20
|
+
],
|
|
21
|
+
"fieldName": "metadata",
|
|
22
|
+
"objectFields": [
|
|
23
|
+
{
|
|
24
|
+
"propertyChain": [
|
|
25
|
+
"http://www.ontotext.com/example/wine#hasWinery"
|
|
26
|
+
],
|
|
27
|
+
"fieldName": "author"
|
|
28
|
+
}
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"valueFilter": "isExplicit($this)",
|
|
33
|
+
"propertyChain": [
|
|
34
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#type",
|
|
35
|
+
"localName()"
|
|
36
|
+
],
|
|
37
|
+
"fieldName": "type",
|
|
38
|
+
"fieldTextPrefix": "is a"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"propertyChain": [
|
|
42
|
+
"http://www.ontotext.com/example/wine#madeFromGrape",
|
|
43
|
+
"http://www.w3.org/2000/01/rdf-schema#label"
|
|
44
|
+
],
|
|
45
|
+
"fieldName": "grape",
|
|
46
|
+
"fieldTextPrefix": "made from {}"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"propertyChain": [
|
|
50
|
+
"http://www.ontotext.com/example/wine#hasSugar"
|
|
51
|
+
],
|
|
52
|
+
"fieldName": "sugar"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"propertyChain": [
|
|
56
|
+
"http://www.ontotext.com/example/wine#hasYear"
|
|
57
|
+
],
|
|
58
|
+
"fieldName": "year"
|
|
59
|
+
}
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
"name": "ChatGPT_starwars_one"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"values": {
|
|
66
|
+
"retrievalBearerToken": "<replace-this-with-actual-value>",
|
|
67
|
+
"types": [
|
|
68
|
+
"http://www.ontotext.com/example/wine#Wine"
|
|
69
|
+
],
|
|
70
|
+
"retrievalUrl": "http://localhost:8000",
|
|
71
|
+
"fields": [
|
|
72
|
+
{
|
|
73
|
+
"propertyChain": [
|
|
74
|
+
"localName()"
|
|
75
|
+
],
|
|
76
|
+
"fieldName": "subject"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"propertyChain": [
|
|
80
|
+
"$self"
|
|
81
|
+
],
|
|
82
|
+
"fieldName": "metadata",
|
|
83
|
+
"objectFields": [
|
|
84
|
+
{
|
|
85
|
+
"propertyChain": [
|
|
86
|
+
"http://www.ontotext.com/example/wine#hasWinery"
|
|
87
|
+
],
|
|
88
|
+
"fieldName": "author"
|
|
89
|
+
}
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"valueFilter": "isExplicit($this)",
|
|
94
|
+
"propertyChain": [
|
|
95
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#type",
|
|
96
|
+
"localName()"
|
|
97
|
+
],
|
|
98
|
+
"fieldName": "type",
|
|
99
|
+
"fieldTextPrefix": "is a"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"propertyChain": [
|
|
103
|
+
"http://www.ontotext.com/example/wine#madeFromGrape",
|
|
104
|
+
"http://www.w3.org/2000/01/rdf-schema#label"
|
|
105
|
+
],
|
|
106
|
+
"fieldName": "grape",
|
|
107
|
+
"fieldTextPrefix": "made from {}"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"propertyChain": [
|
|
111
|
+
"http://www.ontotext.com/example/wine#hasSugar"
|
|
112
|
+
],
|
|
113
|
+
"fieldName": "sugar"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"propertyChain": [
|
|
117
|
+
"http://www.ontotext.com/example/wine#hasYear"
|
|
118
|
+
],
|
|
119
|
+
"fieldName": "year"
|
|
120
|
+
}
|
|
121
|
+
]
|
|
122
|
+
},
|
|
123
|
+
"name": "ChatGPT_starwars_two"
|
|
124
|
+
}
|
|
125
|
+
],
|
|
126
|
+
"biomarkers": [ {
|
|
127
|
+
"values": {
|
|
128
|
+
"retrievalBearerToken": "<replace-this-with-actual-value>",
|
|
129
|
+
"types": [
|
|
130
|
+
"http://www.ontotext.com/example/wine#Wine"
|
|
131
|
+
],
|
|
132
|
+
"retrievalUrl": "http://localhost:8000",
|
|
133
|
+
"fields": [
|
|
134
|
+
{
|
|
135
|
+
"propertyChain": [
|
|
136
|
+
"localName()"
|
|
137
|
+
],
|
|
138
|
+
"fieldName": "subject"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"propertyChain": [
|
|
142
|
+
"$self"
|
|
143
|
+
],
|
|
144
|
+
"fieldName": "metadata",
|
|
145
|
+
"objectFields": [
|
|
146
|
+
{
|
|
147
|
+
"propertyChain": [
|
|
148
|
+
"http://www.ontotext.com/example/wine#hasWinery"
|
|
149
|
+
],
|
|
150
|
+
"fieldName": "author"
|
|
151
|
+
}
|
|
152
|
+
]
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"valueFilter": "isExplicit($this)",
|
|
156
|
+
"propertyChain": [
|
|
157
|
+
"http://www.w3.org/1999/02/22-rdf-syntax-ns#type",
|
|
158
|
+
"localName()"
|
|
159
|
+
],
|
|
160
|
+
"fieldName": "type",
|
|
161
|
+
"fieldTextPrefix": "is a"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"propertyChain": [
|
|
165
|
+
"http://www.ontotext.com/example/wine#madeFromGrape",
|
|
166
|
+
"http://www.w3.org/2000/01/rdf-schema#label"
|
|
167
|
+
],
|
|
168
|
+
"fieldName": "grape",
|
|
169
|
+
"fieldTextPrefix": "made from {}"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"propertyChain": [
|
|
173
|
+
"http://www.ontotext.com/example/wine#hasSugar"
|
|
174
|
+
],
|
|
175
|
+
"fieldName": "sugar"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"propertyChain": [
|
|
179
|
+
"http://www.ontotext.com/example/wine#hasYear"
|
|
180
|
+
],
|
|
181
|
+
"fieldName": "year"
|
|
182
|
+
}
|
|
183
|
+
]
|
|
184
|
+
},
|
|
185
|
+
"name": "ChatGPT_biomarkers_one"
|
|
186
|
+
}],
|
|
187
|
+
"ttyg-repo-1725518186812": []
|
|
188
|
+
}
|