我正在使用 curl 运行 AQL:
curl -vv -u 'admin':'password' -X POST -H "Content-Type: application/json" -d @e.txt http://somecompany.com:8081/artifactory/api/search/aql
这是 e.txt 文件:
items.find(
{
"repo":{"$eq":"yum-repo"},
"type":{"$eq":"file"},
"name":{"$match":"*.rpm"}
}
).include("repo", "path", "name", "@rpm.metadata.name")
这是我的输出的一部分:
"range" : {
"start_pos" : 0,
"end_pos" : 1000,
"limit" : 1000
}
它将输出限制为 1000 我尝试过limit(9999)
它没有帮助