diff --git a/core/modules/book/book.views.inc b/core/modules/book/book.views.inc
new file mode 100644
index 0000000..81b8684
--- /dev/null
+++ b/core/modules/book/book.views.inc
@@ -0,0 +1,127 @@
+<?php
+
+/**
+ * @file
+ * Provide views data for book.module.
+ *
+ * @ingroup views_module_handlers
+ */
+
+/**
+ * Implements hook_views_data().
+ */
+function book_views_data() {
+  $data = [];
+  $data['book'] = [];
+  $data['book']['table'] = [];
+  $data['book']['table']['group']  = t('Book');
+
+  $data['book']['table']['join'] = [
+    'node' => [
+      'left_field' => 'nid',
+      'field' => 'nid',
+    ],
+  ];
+
+  $data['book']['nid'] = [
+    'title' => t('Page'),
+    'help' => t('The book page node.'),
+    'relationship' => [
+      'base' => 'node',
+      'id' => 'standard',
+      'label' => t('Book Page'),
+    ],
+  ];
+
+  $data['book']['bid'] = [
+    'title' => t('Top level book'),
+    'help' => t('The book the node is in.'),
+    'relationship' => [
+      'base' => 'node',
+      'id' => 'standard',
+      'label' => t('Book'),
+    ],
+  ];
+
+  $data['book']['pid'] = [
+    'title' => t('Parent'),
+    'help' => t('The parent book node.'),
+    'relationship' => [
+      'base' => 'node',
+      'id' => 'standard',
+      'label' => t('Book Parent'),
+    ],
+  ];
+
+  $data['book']['has_children'] = [
+    'title' => t('Page has Children'),
+    'help' => t('Flag indicating whether this book page has children'),
+    'field' => [
+      'id' => 'boolean',
+    ],
+    'sort' => [
+      'id' => 'standard',
+    ],
+    'filter' => [
+      'id' => 'boolean',
+      'label' => t('Has Children'),
+    ],
+    'argument' => [
+      'id' => 'numeric',
+    ],
+  ];
+
+  $data['book']['weight'] = [
+    'title' => t('Weight'),
+    'help' => t('The weight of the book page.'),
+    'field' => [
+      'id' => 'numeric',
+      'click sortable' => TRUE,
+    ],
+    'sort' => [
+      'id' => 'standard',
+    ],
+  ];
+
+  $data['book']['depth'] = [
+    'title' => t('Depth'),
+    'help' => t('The depth of the book page in the hierarchy; top level books have a depth of 1.'),
+    'field' => [
+      'id' => 'numeric',
+      'click sortable' => TRUE,
+    ],
+    'sort' => [
+      'id' => 'standard',
+    ],
+    'filter' => [
+      'id' => 'numeric',
+    ],
+    'argument' => [
+      'id' => 'standard',
+    ],
+  ];
+  $parents = [
+    1 => t('1st parent'),
+    2 => t('2nd parent'),
+    3 => t('3rd parent'),
+    4 => t('4th parent'),
+    5 => t('5th parent'),
+    6 => t('6th parent'),
+    7 => t('7th parent'),
+    8 => t('8th parent'),
+    9 => t('9th parent'),
+  ];
+  foreach ($parents as $i => $parent) {
+    $data['book']["p$i"] = [
+      'title' => $parent,
+      'help' => t('The !parent of book node.', ['!parent' => $parent]),
+      'relationship' => [
+        'base' => 'node',
+        'id' => 'standard',
+        'label' => t('Book Parent'),
+      ],
+    ];
+  }
+
+  return $data;
+}
diff --git a/core/modules/book/src/Plugin/views/argument_default/Root.php b/core/modules/book/src/Plugin/views/argument_default/Root.php
new file mode 100644
index 0000000..7c933e2
--- /dev/null
+++ b/core/modules/book/src/Plugin/views/argument_default/Root.php
@@ -0,0 +1,75 @@
+<?php
+
+/**
+ * @file
+ * Contains Drupal\book\Plugin\views\argument_default\Root.
+ */
+
+namespace Drupal\book\Plugin\views\argument_default;
+
+use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
+use Drupal\node\NodeStorageInterface;
+use Drupal\node\Plugin\views\argument_default\Node;
+use Symfony\Component\DependencyInjection\ContainerInterface;
+
+/**
+ * Default argument plugin to get the current node's book root.
+ *
+ * @ViewsArgumentDefault(
+ *   id = "book_root",
+ *   title = @Translation("Book root from current node")
+ * )
+ */
+class Root extends Node implements ContainerFactoryPluginInterface {
+
+  /**
+   * The node storage controller.
+   *
+   * @var \Drupal\node\NodeStorageInterface
+   */
+  protected $nodeStorage;
+
+  /**
+   * Constructs a Drupal\book\Plugin\views\argument_default\Root object.
+   *
+   * @param array $configuration
+   *   A configuration array containing information about the plugin instance.
+   * @param string $plugin_id
+   *   The plugin_id for the plugin instance.
+   * @param array $plugin_definition
+   *   The plugin implementation definition.
+   * @param \Drupal\node\NodeStorageInterface $node_storage
+   *   The node storage controller.
+   */
+  public function __construct(array $configuration, $plugin_id, array $plugin_definition, NodeStorageInterface $node_storage) {
+    parent::__construct($configuration, $plugin_id, $plugin_definition);
+    $this->nodeStorage = $node_storage;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
+    return new static(
+      $configuration,
+      $plugin_id,
+      $plugin_definition,
+      $container->get('entity.manager')->getStorage('node')
+    );
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getArgument() {
+    // Use the argument_default_node plugin to get the nid argument.
+    $nid = parent::getArgument();
+    if (!empty($nid)) {
+      $node = $this->nodeStorage->load($nid);
+      if (isset($node->book['bid'])) {
+        return $node->book['bid'];
+      }
+    }
+  }
+
+}
