API Stability Short-Term

The getLostCollectorDays() GraphQL query to return the number of lost collector days. This query field is a preview and still experimental, and subject to change.

Syntax

Below is the syntax for the getLostCollectorDays() query field:

graphql
getLostCollectorDays: integer!

This query field is very simple: there's no input to give or return parameters to specify. Below is an example of how to use it, along with how the results might look:

Show:
graphql
query {
  getLostCollectorDays
}
Example Responses
Show:
json
{
  "data": {
    "getLostCollectorDays": 90
  }
}