我想用用户定义函数从我的集合中返回一些文档。
/* path/to/file.js */ 'use strict'; function dimcity(number) { return {FOR d IN Dim_City FILTER d.id >= number RETURN d}; } module.exports = dimcity;
但是它给予了一个错误,所以我如何在用户定义函数中从集合返回一个文档。
6psbrbz91#
你不应该这么做!文件上说:不支持修改全局变量,也不支持从AQL用户函数内部阅读或更改任何集合的数据。请访问https://www.arangodb.com/docs/stable/aql/extending-conventions.html#variables-and-side-effects
1条答案
按热度按时间6psbrbz91#
你不应该这么做!文件上说:
不支持修改全局变量,也不支持从AQL用户函数内部阅读或更改任何集合的数据。
请访问https://www.arangodb.com/docs/stable/aql/extending-conventions.html#variables-and-side-effects