Skip to main content

graph_summaries

Creates, updates, deletes, gets or lists a graph_summaries resource.

Overview

Namegraph_summaries
TypeResource
Idaws.neptune_graph.graph_summaries

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
graph_summaryobjectThe graph summary.
last_statistics_computation_timestring (date-time)The timestamp, in ISO 8601 format, of the time at which Neptune Analytics last computed statistics.
versionstringDisplay the version of this tool.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_graph_summaryselectgraphIdentifier, regionmodeGets 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.

NameDatatypeDescription
graphIdentifierstringThe unique identifier of the Neptune Analytics graph.
regionstringAWS region (default: us-east-1)
modestringThe summary mode can take one of two values: basic (the default), and detailed.

SELECT examples

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 }}'
;