getSparqlStatistics method

Future<GetSparqlStatisticsOutput> getSparqlStatistics()

Gets RDF statistics (SPARQL).

May throw AccessDeniedException. May throw BadRequestException. May throw ClientTimeoutException. May throw ConstraintViolationException. May throw IllegalArgumentException. May throw InvalidArgumentException. May throw InvalidParameterException. May throw MissingParameterException. May throw PreconditionsFailedException. May throw ReadOnlyViolationException. May throw StatisticsNotAvailableException. May throw TooManyRequestsException. May throw UnsupportedOperationException.

Implementation

Future<GetSparqlStatisticsOutput> getSparqlStatistics() async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/sparql/statistics',
    exceptionFnMap: _exceptionFns,
  );
  return GetSparqlStatisticsOutput.fromJson(response);
}