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.
Files changed (117) 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-with-tag.json +47 -0
  10. package/fixtures/cluster/3-nodes-cluster-group-status.json +12 -3
  11. package/fixtures/cluster/4-nodes-cluster-group-status.json +58 -0
  12. package/fixtures/cluster/cluster-config.json +1 -0
  13. package/fixtures/cluster/cluster-node-status.json +4 -1
  14. package/fixtures/cluster/no-cluster-group-status.json +2 -1
  15. package/fixtures/cluster/no-cluster-node-status.json +2 -1
  16. package/fixtures/cluster/save-cluster-configuration-response.json +10 -0
  17. package/fixtures/connectors/get-retrieval-connector.json +1 -1
  18. package/fixtures/connectors/get-ttyg-chatgpt-connectors.json +188 -0
  19. package/fixtures/locale-en.json +382 -101
  20. package/fixtures/remote-location/get-0-remote-locations.json +1 -2
  21. package/fixtures/remote-location/get-1-remote-locations.json +2 -4
  22. package/fixtures/remote-location/get-2-remote-locations.json +3 -6
  23. package/fixtures/remote-location/get-3-remote-locations.json +4 -8
  24. package/fixtures/remote-location/get-4-remote-locations.json +54 -0
  25. package/fixtures/remote-location/remote-location-status-in-cluster.json +1 -2
  26. package/fixtures/remote-location/remote-location-status-not-in-cluster.json +1 -2
  27. package/fixtures/remote-location/remote-locations-filter.json +1 -2
  28. package/fixtures/repositories/get-locations.json +5 -10
  29. package/fixtures/repositories/get-ttyg-repositories.json +28 -0
  30. package/fixtures/security/get-admin-user.json +22 -0
  31. package/fixtures/similarity/get-ttyg-similarity-connectors.json +46 -0
  32. package/fixtures/ttyg/agent/create-agent.json +2 -1
  33. package/fixtures/ttyg/agent/get-agent-defaults.json +42 -0
  34. package/fixtures/ttyg/agent/get-agent-list-after-deleted.json +1 -1
  35. package/fixtures/ttyg/agent/get-agent-list-new-agent.json +2 -73
  36. package/fixtures/ttyg/agent/get-agent-list.json +1 -1
  37. package/fixtures/ttyg/agent/get-agent.json +25 -0
  38. package/fixtures/ttyg/chats/ask-question.json +25 -0
  39. package/fixtures/ttyg/chats/create/create-chat-response.json +16 -0
  40. package/fixtures/ttyg/chats/create/get-chats-after-create.json +12 -0
  41. package/fixtures/ttyg/chats/create/get-chats-before-create.json +7 -0
  42. package/fixtures/ttyg/chats/explain-response-1.json +59 -0
  43. package/fixtures/ttyg/chats/explain-response-2.json +59 -0
  44. package/fixtures/ttyg/chats/get-chat.json +199 -0
  45. package/integration/cluster/cluster-configuration/cluster-configuration-multi-region.spec.js +97 -0
  46. package/integration/cluster/cluster-configuration/cluster-configuration-nodes.spec.js +70 -0
  47. package/integration/cluster/cluster-configuration/cluster-configuration-properties.spec.js +95 -0
  48. package/integration/cluster/cluster-configuration/cluster-configuration.spec.js +38 -0
  49. package/integration/cluster/cluster-legend.spec.js +1 -0
  50. package/integration/cluster/edit-cluster-nodes-modal.spec.js +425 -0
  51. package/integration/explore/graphs.overview.spec.js +4 -0
  52. package/integration/explore/similariti-index-create.spec.js +1 -1
  53. package/integration/explore/similarity-index.spec.js +1 -1
  54. package/integration/explore/visual-graph/visual.graph.spec.js +31 -35
  55. package/integration/home/cookie-policy.spec.js +83 -0
  56. package/integration/home/create-repository.spec.js +35 -0
  57. package/integration/home/documentation-link.spec.js +60 -0
  58. package/integration/home/google-analytics.spec.js +60 -0
  59. package/integration/home/language-selector.spec.js +19 -0
  60. package/integration/home/rdf-resource-search.spec.js +192 -0
  61. package/integration/home/view-resource-autocomplete.spec.js +52 -0
  62. package/integration/home/workbench.home.spec.js +1 -277
  63. package/integration/import/import-user-data-file-upload.spec.js +13 -0
  64. package/integration/import/import-user-data.spec.js +6 -1
  65. package/integration/import/import-view.spec.js +6 -1
  66. package/integration/license/license.spec.js +26 -0
  67. package/integration/repository/attach-remote-location.spec.js +94 -40
  68. package/integration/repository/repositories.spec.js +1 -7
  69. package/integration/setup/my-settings.spec.js +13 -21
  70. package/integration/ttyg/agent-list.spec.js +27 -25
  71. package/integration/ttyg/agent-select-menu.spec.js +18 -16
  72. package/integration/ttyg/chat-list.spec.js +72 -9
  73. package/integration/ttyg/chat-panel.spec.js +106 -10
  74. package/integration/ttyg/clone-agent.spec.js +8 -4
  75. package/integration/ttyg/create-agent.spec.js +303 -51
  76. package/integration/ttyg/create-chat.spec.js +68 -0
  77. package/integration/ttyg/delete-agent.spec.js +6 -5
  78. package/integration/ttyg/edit-agent.spec.js +16 -5
  79. package/integration/ttyg/ttyg-permission.spec.js +66 -0
  80. package/integration/ttyg/ttyg-view.spec.js +8 -4
  81. package/npm-shrinkwrap.json +215 -220
  82. package/package.json +5 -6
  83. package/steps/alert-dialog-steps.js +25 -0
  84. package/steps/cluster/cluster-configuration-steps.js +173 -5
  85. package/steps/cluster/cluster-page-steps.js +8 -0
  86. package/steps/cluster/custer-nodes-configuration-steps.js +107 -0
  87. package/steps/home-steps.js +48 -5
  88. package/steps/import/import-steps.js +11 -7
  89. package/steps/license-steps.js +25 -0
  90. package/steps/repositories/attach-repository-steps.js +33 -0
  91. package/steps/repository-steps.js +26 -11
  92. package/steps/setup/settings-steps.js +17 -0
  93. package/steps/ttyg/chat-panel-steps.js +31 -6
  94. package/steps/ttyg/ttyg-agent-settings-modal.steps.js +82 -4
  95. package/steps/ttyg/ttyg-view-steps.js +77 -3
  96. package/steps/visual-graph-steps.js +29 -1
  97. package/stubs/cluster/cluster-stubs.js +162 -7
  98. package/stubs/cluster/remote-location-stubs.js +46 -0
  99. package/stubs/connector-stubs.js +24 -0
  100. package/stubs/environment-stubs.js +27 -0
  101. package/stubs/license-stubs.js +108 -0
  102. package/stubs/repositories/repositories-stubs.js +11 -8
  103. package/stubs/repositories-stub.js +15 -0
  104. package/stubs/security-stubs.js +29 -0
  105. package/stubs/similarity-index-stubs.js +25 -0
  106. package/stubs/stubs.js +4 -0
  107. package/stubs/ttyg/ttyg-stubs.js +79 -40
  108. package/support/commands.js +2 -0
  109. package/support/index.js +18 -0
  110. package/support/security-command.js +25 -0
  111. package/support/settings-commands.js +4 -5
  112. package/support/user-commands.js +31 -0
  113. package/fixtures/ttyg/chats/get-chat-1.json +0 -43
  114. package/integration/cluster/cluster-management.spec.js +0 -220
  115. package/steps/cluster/add-remote-location-dialog-steps.js +0 -11
  116. package/steps/cluster/create-cluster-dialog-steps.js +0 -39
  117. package/steps/cluster/replace-nodes-dialog-steps.js +0 -39
package/cypress.config.js CHANGED
@@ -21,5 +21,8 @@ module.exports = defineConfig({
21
21
  reporterOptions: {
22
22
  configFile: 'cypress-reporter-config.json'
23
23
  }
24
+ },
25
+ env: {
26
+ set_default_user_data: true
24
27
  }
25
28
  });
@@ -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
+ ]
@@ -36,6 +36,9 @@
36
36
  "lastLogTerm": 0,
37
37
  "lastLogIndex": 0,
38
38
  "endpoint": "http://pc-desktop:7202",
39
- "recoveryStatus": {}
39
+ "recoveryStatus": {},
40
+ "topologyStatus": {
41
+ "state": "PRIMARY_NODE"
42
+ }
40
43
  }
41
44
  ]
@@ -23,7 +23,10 @@
23
23
  "lastLogTerm": 0,
24
24
  "lastLogIndex": 0,
25
25
  "endpoint": "http://pc-desktop:7201",
26
- "recoveryStatus": {}
26
+ "recoveryStatus": {},
27
+ "topologyStatus": {
28
+ "state": "PRIMARY_NODE"
29
+ }
27
30
  },
28
31
  {
29
32
  "address": "pc-desktop:7302",
@@ -36,6 +36,9 @@
36
36
  "lastLogTerm": 0,
37
37
  "lastLogIndex": 0,
38
38
  "endpoint": "http://pc-desktop:7202",
39
- "recoveryStatus": {}
39
+ "recoveryStatus": {},
40
+ "topologyStatus": {
41
+ "state": "PRIMARY_NODE"
42
+ }
40
43
  }
41
44
  ]
@@ -36,6 +36,9 @@
36
36
  "lastLogTerm": 0,
37
37
  "lastLogIndex": 0,
38
38
  "endpoint": "http://pc-desktop:7202",
39
- "recoveryStatus": {}
39
+ "recoveryStatus": {},
40
+ "topologyStatus": {
41
+ "state": "PRIMARY_NODE"
42
+ }
40
43
  }
41
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
+ ]
@@ -5,6 +5,7 @@
5
5
  "messageSizeKB": 64,
6
6
  "verificationTimeout": 1500,
7
7
  "transactionLogMaximumSizeGB": 50.0,
8
+ "batchUpdateInterval": 5000,
8
9
  "nodes": [
9
10
  "pc-desktop:7302",
10
11
  "pc-desktop:7300",
@@ -6,5 +6,8 @@
6
6
  "lastLogTerm": 0,
7
7
  "lastLogIndex": 0,
8
8
  "endpoint": "http://pc-desktop:7200",
9
- "recoveryStatus": {}
9
+ "recoveryStatus": {},
10
+ "topologyStatus": {
11
+ "state": "PRIMARY_NODE"
12
+ }
10
13
  }
@@ -7,6 +7,7 @@
7
7
  "lastLogTerm": 0,
8
8
  "lastLogIndex": 0,
9
9
  "endpoint": "http://pc-desktop:7200",
10
- "recoveryStatus": {}
10
+ "recoveryStatus": {},
11
+ "topologyStatus": {}
11
12
  }
12
13
  ]
@@ -6,5 +6,6 @@
6
6
  "lastLogTerm": 0,
7
7
  "lastLogIndex": 0,
8
8
  "endpoint": "http://pc-desktop:7200",
9
- "recoveryStatus": {}
9
+ "recoveryStatus": {},
10
+ "topologyStatus": {}
10
11
  }
@@ -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
+ }
@@ -24,6 +24,6 @@
24
24
  "bulkUpdateBatchSize": 1000,
25
25
  "skipInitialIndexing": false
26
26
  },
27
- "name": "gpt-connector"
27
+ "name": "retrieval-connector"
28
28
  }
29
29
  ]
@@ -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
+ }