I have created a custom aspect that has a property userName.Now I want to fetch the size of files based on this custom property. Is there any API that gives the required Results?
If there isn't any API then How to create one. Can anyone help with this?
You may try using the REST API.
This one is getting the information for a simple "budget" query, but you can adapt it to your requirements.
curl --location --request POST 'http://localhost:8080/alfresco/api/-default-/public/search/versions/1/search' \ --header 'Authorization: Basic YWRtaW46YWRtaW4=' \ --header 'Content-Type: application/json' \ --data-raw '{ "query": { "query": "budget" }, "stats": [ { "field": "content.size", "sum": true } ] }'
In place of budget, I need to query based on cm:creator of cm:auditable aspect. Can you show me an example of how to use it in a query?
Ask for and offer help to other Alfresco Content Services Users and members of the Alfresco team.
Related links:
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.