Method: AlfrescoAPI::QueriesApi#find_nodes
- Defined in:
- lib/alfresco_api/api/queries_api.rb
#find_nodes(term, opts = {}) ⇒ NodePaging
Find nodes Note: this endpoint is available in Alfresco 5.2 and newer versions. Gets a list of nodes that match the given search criteria. The search term is used to look for nodes that match against name, title, description, full text content or tags. The search term: - must contain a minimum of 3 alphanumeric characters - allows "quoted term" - can optionally use ‘*’ for wildcard matching By default, file and folder types will be searched unless a specific type is provided as a query parameter. By default, the search will be across the repository unless a specific root node id is provided to start the search from. You can sort the result list using the orderBy parameter. You can specify one or more of the following fields in the orderBy parameter: * name * modifiedAt * createdAt
35 36 37 38 |
# File 'lib/alfresco_api/api/queries_api.rb', line 35 def find_nodes(term, opts = {}) data, _status_code, _headers = find_nodes_with_http_info(term, opts) return data end |