type Mutation {
    """
    Busts the Redis cache for the playlistIds query in ows-playlist (1 week retention).

    This service does not cache playlist IDs locally - all caching is handled by ows-playlist
    to avoid stale data synchronization issues between cache layers.

    Returns true when successful.
    """
    bustPlaylistIdsCache(
        """
        If true, fetches fresh data from ows-playlist API bypassing its Redis cache,
        then updates the cache with fresh data.
        Default: false (uses cached data from ows-playlist)
        """
        forceRefresh: Boolean
    ): Boolean!
}
