query TikTokTimeSeriesQuery(
    $isrc: String!,
    $startDate: String,
    $endDate: String,
    $type: TiktokAnalyticsTimeseriesType,
    $countries: [String!],
    $limit: Int
) {
    globalSoundRecordingByIsrc(isrc: $isrc) {
        isrc
        tiktok {
            summary(
                startDate: $startDate,
                endDate: $endDate,
                type: $type,
                countries: $countries,
                limit: $limit
            ) {
                items {
                    creations
                    views
                    id
                    __typename
                }
                __typename
            }
            __typename
        }
        __typename
    }
}
