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
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
## Purpose and principles
4
4
The plugin is used to import Third-Party Data to enrich some nodes in your graph:
5
5
- For example, you may have a `Company` node in your graph, and you want to enrich it with data from the [French Official Company Information API](https://annuaire-entreprises.data.gouv.fr/).
6
-
- You click any `Company` node in the graph, use the `custom action` menu and click `Fetch details for French Company`.
6
+
- You click any `Company` node in the graph, use the `Plugins` menu and click `Fetch details for French Company`.
7
7
- The plugin opens and shows a list of matching results from the French Company Information API.
8
8
- You select the result you want to import, which creates a new `Person_Details` node in the graph with the data from the API, linked to the original `Person` node.
name: (vendor: Vendor): string=>`Fetch details from ${vendor.name}`,
136
-
details: (vendor: Vendor): string=>
137
-
`Get details from ${vendor.name} (action auto-generated by the third-party data plugin)`
138
-
},
139
130
pluginAction: {
140
131
name: (vendor: Vendor): string=>`Fetch details from ${vendor.name}`
141
132
},
@@ -144,16 +135,6 @@ export const STRINGS = {
144
135
constant: `Fixed value`,
145
136
actionColumnHead: 'Action'
146
137
},
147
-
customActionManager: {
148
-
title: 'Manage custom actions for this integration',
149
-
description: `Custom actions are used to launch an integration from a node context-menu`,
150
-
deleteButton: 'Delete',
151
-
noCustomActions: `No custom action found for this integration, you can create one using the button bellow.`,
152
-
addActionDescription: 'This will create a new custom action, shared at the data-source level',
153
-
addButton: 'Add custom action',
154
-
listTitle: (actions: number): string=>
155
-
`Found ${actions} custom action(s) for this integration:`
156
-
},
157
138
global: {
158
139
closeButton: 'Close',
159
140
noValue: '(No value)',
@@ -204,7 +185,6 @@ export const STRINGS = {
204
185
title: 'Integrations list',
205
186
actionsHeader: 'Actions',
206
187
editButton: 'Edit',
207
-
installButton: 'Install',
208
188
deleteButton: 'Delete',
209
189
addButton: 'Add integration',
210
190
vendorHeader: 'Vendor API',
@@ -238,9 +218,8 @@ export const STRINGS = {
238
218
},
239
219
integrationCreated: {
240
220
title: 'Integration created successfully',
241
-
message: `The new integration was successfully saved. You can install this integration by adding a custom action to launch it from a node's context menu.`,
242
-
createCustomActionButton: 'Install integration',
243
-
dontCreateCustomActionButton: 'Later'
221
+
message: 'The new integration was successfully saved.',
0 commit comments