为什么我的 FaunaDB 中的 client.query 对象中没有定义 Documents 函数?

Why isn't the Documents function defined in my client.query object in FaunaDB?

我正在尝试使用 documentation 中提供的示例访问 Fauna 数据库。但是,在下面代码中标记为“ERROR HERE”的行中,出现异常 TypeError: q.Documents is not a function。我已经使用 Chrome 调试器进行了查看,并且确实没有在 client.query 对象 (q) 中定义文档。

<script src="//cdn.jsdelivr.net/gh/fauna/faunadb-js-release@latest/faunadb-min.js"></script>
<script>
    var client = new faunadb.Client({
        secret: "fnAD15hPbyACANkT8jKl2Ai0AZJZWYF0q9YXT12M" // not real!
    });

    let q = faunadb.query;
    console.log(q);

    let db = q.Database('grocery_list');
    console.log(db);

    let collection = q.Collection('items');
    console.log(collection);     // this works

    client.query(
        q.Paginate(q.Documents(q.Collection('items')), { size: 2 }),  // <-- ERROR HERE
    )
    .then((ret) => console.log(ret))
</script>

您使用了错误的 CDN link,查看 Github 驱动程序页面中的说明 https://github.com/fauna/faunadb-js/#browsers