graph_summaries
Creates, updates, deletes, gets or lists a graph_summaries resource.
Overview
| Name | graph_summaries |
| Type | Resource |
| Id | aws.neptune_graph.graph_summaries |
Fields
The following fields are returned by SELECT queries:
- get_graph_summary
| Name | Datatype | Description |
|---|---|---|
graph_summary | object | The graph summary. |
last_statistics_computation_time | string (date-time) | The timestamp, in ISO 8601 format, of the time at which Neptune Analytics last computed statistics. |
version | string | Display the version of this tool. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_graph_summary | select | graphIdentifier, region | mode | Gets a graph summary for a property graph. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
graphIdentifier | string | The unique identifier of the Neptune Analytics graph. |
region | string | AWS region (default: us-east-1) |
mode | string | The summary mode can take one of two values: basic (the default), and detailed. |
SELECT examples
- get_graph_summary
Gets a graph summary for a property graph.
SELECT
graph_summary,
last_statistics_computation_time,
version
FROM aws.neptune_graph.graph_summaries
WHERE graphIdentifier = '{{ graphIdentifier }}' -- required
AND region = '{{ region }}' -- required
AND mode = '{{ mode }}'
;