CSV export
Required Permission: Project Settings management (Read more about permissions in User Groups)
Table of Contents
CSV export setting is used to set which node or relationship properties are exported when the user uses the CSV export options in Graphlytic (read more about the export features in Export).
Configuration
- In the "Application Menu" (top right) choose page "Project Settings"
- In the "Project Settings" panel click on the "Export CSV" row.
- Enter JSON configuration and confirm by pressing the "Save" button.
Description of configuration
Configuration is entered in JSON format. Example:
{
"nodeProperties" : ["TYPE", "SUBTYPE", "_dbId"],
"relProperties" : ["TYPE", "SUBTYPE", "_dbId"],
"useSchemaTitles" : true,
"maxExportedRows" : 2000
}
Explanation of JSON properties:
Property | Values | Default | Description |
---|---|---|---|
nodeProperties mandatory | Array of strings | An array of node properties that will be exported (this is a default setting that can be modified by the user before the export). If set to null then all detected properties from the exported data are exported. | |
relProperties mandatory | Array of strings | An array of relationship properties that will be exported (this is a default setting that can be modified by the user before the export). If set to null then all detected properties from the exported data are exported. | |
useSchemaTitles mandatory | true, false | If set to true then title values from Data Schema are used as column titles in exported CSV. If set to false then property values from Data Schema are used as column titles in exported CSV. | |
maxExportedRows | Integer | 10000 | The maximal number of exported rows in any CSV export service. |