tigergraph__run_loading_job_with_data
Run a loading job by providing inline data (CSV, JSON, etc.) to load into TigerGraph according to the specified job definition.
Instructions
Execute a loading job with inline data string. The data is posted to TigerGraph and loaded according to the specified loading job definition.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| eol | No | End-of-line character. Default is '\n'. Supports '\r\n'. | |
| data | Yes | The data string to load (CSV, JSON, etc.). Example: 'user1,Alice\nuser2,Bob' | |
| profile | No | Connection profile name. Omit to use the active default profile. Use 'list_connections' to see available profiles. | |
| timeout | No | Timeout in milliseconds. Set to 0 for system-wide timeout. | |
| file_tag | Yes | The name of file variable in the loading job (DEFINE FILENAME <fileTag>). | |
| job_name | Yes | The name of the loading job to run. | |
| separator | No | Data value separator. Default is comma. For JSON data, don't specify. | |
| graph_name | No | Name of the graph. If not provided, uses default connection. | |
| size_limit | No | Maximum size for input data in bytes (default 128MB). |