OBJECT

StatsProviderInfo

link GraphQL Schema definition

  • type StatsProviderInfo {
  • # Namespace for this stats provider - stats queries directed to this namespace
  • # will be sent to this provider.
  • # This would usually be the same as the fieldname in the _StatsProviders but there
  • # may be a difference e.g. in casing,
  • # the namespace field here is used for the actual stats namespace.
  • namespace: String!
  • # If set to false, the namespace supports stats queries without providing any
  • # entityIds.
  • requiresEntityId: Boolean
  • # Indicates if the stats provider can support a queryString as input
  • supportsQueryString: Boolean
  • # If set to false, stats provider is invoked with the default entityIds.
  • # Set to true if the stats provider should be invoked with EntityIds coming from
  • # the 'id' field from the entity
  • # namespace with the same namespace name as the stats provider.
  • useNamespaceId: Boolean!
  • }