Get Rdf Graph Summary
neptunedata_get_rdf_graph_summary | R Documentation |
Gets a graph summary for an RDF graph¶
Description¶
Gets a graph summary for an RDF graph.
When invoking this operation in a Neptune cluster that has IAM authentication enabled, the IAM user or role making the request must have a policy attached that allows the neptune-db:GetGraphSummary IAM action in that cluster.
Usage¶
Arguments¶
mode
Mode can take one of two values:
BASIC
(the default), andDETAILED
.
Value¶
A list with the following syntax:
list(
statusCode = 123,
payload = list(
version = "string",
lastStatisticsComputationTime = as.POSIXct(
"2015-01-01"
),
graphSummary = list(
numDistinctSubjects = 123,
numDistinctPredicates = 123,
numQuads = 123,
numClasses = 123,
classes = list(
"string"
),
predicates = list(
list(
123
)
),
subjectStructures = list(
list(
count = 123,
predicates = list(
"string"
)
)
)
)
)
)