Change record status: 
Introduced in branch: 
8.x-3.x
Description: 

Instead of calling views_fetch_data() directly you should now use the service.

Before:

$data = views_fetch_data('node');

After:

$data = drupal_container()->get('views.views_data')->get('node');
Impacts: 
Module developers