Skip to content

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

neptunedata_get_rdf_graph_summary(mode)

Arguments

mode

Mode can take one of two values: BASIC (the default), and DETAILED.

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"
          )
        )
      )
    )
  )
)

Request syntax

svc$get_rdf_graph_summary(
  mode = "basic"|"detailed"
)