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: doc/Apis/DatasetApi.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -151,7 +151,7 @@ Create a new Dataset
151
151
152
152
Create a sub-dataset from the dataset in parameter
153
153
154
-
Create a copy of the dataset using the results of the list of queries given in parameter.
154
+
Create a copy of the dataset using the results of the list of queries given in parameter. Note: This endpoint is activated only if `csm.platform.twincache.useGraphModule` property is set to true
155
155
156
156
### Parameters
157
157
@@ -180,7 +180,7 @@ Create a sub-dataset from the dataset in parameter
180
180
181
181
Create new entities in a graph instance
182
182
183
-
create new entities in a graph instance
183
+
Create new entities in a graph instance Note: This endpoint is activated only if `csm.platform.twincache.useGraphModule` property is set to true
184
184
185
185
### Parameters
186
186
@@ -236,7 +236,7 @@ null (empty response body)
236
236
237
237
Delete entities in a graph instance
238
238
239
-
delete entities in a graph instance
239
+
Delete entities in a graph instance Note: This endpoint is activated only if `csm.platform.twincache.useGraphModule` property is set to true
240
240
241
241
### Parameters
242
242
@@ -266,7 +266,7 @@ null (empty response body)
266
266
267
267
Download a graph as a zip file
268
268
269
-
Download the compressed graph reference by the hash in a zip file
269
+
Download the compressed graph reference by the hash in a zip file Note: This endpoint is activated only if `csm.platform.twincache.useGraphModule` property is set to true
270
270
271
271
### Parameters
272
272
@@ -454,7 +454,7 @@ Get the dataset's refresh job status
454
454
455
455
Get entities in a graph instance
456
456
457
-
get entities in a graph instance
457
+
Get entities in a graph instance Note: This endpoint is activated only if `csm.platform.twincache.useGraphModule` property is set to true
458
458
459
459
### Parameters
460
460
@@ -511,7 +511,7 @@ Get entities in a graph instance
511
511
512
512
Refresh data on dataset from dataset's source
513
513
514
-
Refresh dataset from parent source. At date, sources can be: dataset (refresh from another dataset) Azure Digital twin Azure storage Local File (import a new file) During refresh, datas are overwritten
514
+
Refresh dataset from parent source. At date, sources can be: dataset (refresh from another dataset) Azure Digital twin Azure storage Local File (import a new file) During refresh, datas are overwritten Note: This endpoint is activated only if `csm.platform.twincache.useGraphModule` property is set to true
515
515
516
516
### Parameters
517
517
@@ -592,7 +592,7 @@ null (empty response body)
592
592
593
593
Rollback the dataset after a failed refresh
594
594
595
-
Rollback the twingraph on a dataset after a failed refresh
595
+
Rollback the twingraph on a dataset after a failed refresh Note: This endpoint is activated only if `csm.platform.twincache.useGraphModule` property is set to true
596
596
597
597
### Parameters
598
598
@@ -675,7 +675,7 @@ Set the Dataset default security
675
675
676
676
Run a query on a graph instance and return the result as a zip file in async mode
677
677
678
-
Run a query on a graph instance and return the result as a zip file in async mode
678
+
Run a query on a graph instance and return the result as a zip file in async mode Note: This endpoint is activated only if `csm.platform.twincache.useGraphModule` property is set to true
679
679
680
680
### Parameters
681
681
@@ -704,7 +704,7 @@ Run a query on a graph instance and return the result as a zip file in async mod
704
704
705
705
Async batch update by loading a CSV file on a graph instance
706
706
707
-
Async batch update by loading a CSV file on a graph instance
707
+
Async batch update by loading a CSV file on a graph instance Note: This endpoint is activated only if `csm.platform.twincache.useGraphModule` property is set to true
708
708
709
709
### Parameters
710
710
@@ -734,7 +734,7 @@ Async batch update by loading a CSV file on a graph instance
734
734
735
735
Return the result of a query made on the graph instance as a json
736
736
737
-
Run a query on a graph instance and return the result as a json
737
+
Run a query on a graph instance and return the result as a json Note: This endpoint is activated only if `csm.platform.twincache.useGraphModule` property is set to true
738
738
739
739
### Parameters
740
740
@@ -854,7 +854,7 @@ Update entities in a graph instance
854
854
|**organization\_id**|**String**| the Organization identifier |[default to null]|
855
855
|**dataset\_id**|**String**| the Dataset Identifier |[default to null]|
856
856
|**type**|**String**| the entity model type |[default to null][enum: node, relationship]|
857
-
|**GraphProperties**|[**List**](../Models/GraphProperties.md)|the entities to update ||
857
+
|**GraphProperties**|[**List**](../Models/GraphProperties.md)|The entities to update Note: This endpoint is activated only if `csm.platform.twincache.useGraphModule` property is set to true ||
858
858
859
859
### Return type
860
860
@@ -875,7 +875,7 @@ Update entities in a graph instance
875
875
876
876
Upload data from zip file to dataset's twingraph
877
877
878
-
To create a new graph from flat files, you need to create a Zip file. This Zip file must countain two folders named Edges and Nodes. .zip hierarchy: *main_folder/Nodes *main_folder/Edges In each folder you can place one or multiple csv files containing your Nodes or Edges data. Your csv files must follow the following header (column name) requirements: The Nodes CSVs requires at least one column (the 1st).Column name = 'id'. It will represent the nodes ID Ids must be populated with string The Edges CSVs require three columns named, in order, * source * target * id those colomns represent * The source of the edge * The target of the edge * The id of the edge All following columns content are up to you.
878
+
To create a new graph from flat files, you need to create a Zip file. This Zip file must countain two folders named Edges and Nodes. .zip hierarchy: *main_folder/Nodes *main_folder/Edges In each folder you can place one or multiple csv files containing your Nodes or Edges data. Your csv files must follow the following header (column name) requirements: The Nodes CSVs requires at least one column (the 1st).Column name = 'id'. It will represent the nodes ID Ids must be populated with string The Edges CSVs require three columns named, in order, * source * target * id those colomns represent * The source of the edge * The target of the edge * The id of the edge All following columns content are up to you. Note: This endpoint is activated only if `csm.platform.twincache.useGraphModule` property is set to true
0 commit comments