我已通过以下查询获得了包含所有属性的所有文档列表
/OData.svc/workspaces/Document?$select=*&metadata=no&query=InTree:/Root/Sites/Default_Site/workspaces/Document%20AND%20TypeIs:File
但我只需要计算那些文件
我只能通过哪个oData查询计算?
由于
答案 0 :(得分:3)
使用 $ count 属性,格式如下: 的 https://demo.sensenet.com/OData.svc/workspaces/Document/ $计数强>
您可以在本文中阅读有关OData的更多信息(与此问题相关)('解决收集计数'部分):
https://community.sensenet.com/docs/odata-rest-api
BR, 人:Maros