Activity and Exercise

The exerciseTracker query helps you to get the total time of registered activity minutes the user has recorded in the given date range.

Required Arguments

Available Fields

Example

query{
  exerciseTracker(start:"2023-01-01" end:"2023-04-13"){
    pageInfo{
      hasNextPage
      hasPreviousPage
    }
    edges{
      node{
        calories
        datetime
        id
        intensity
        type
        durationMinutes
      }
    }
    
  }
}

Last updated