find_documents_by_content
Search RSpace documents by content terms using AND/OR operators, filter with exclusion terms, and sort results to locate research data matching specific criteria.
Instructions
Advanced content-based document search
Usage: Find documents containing specific content terms
Parameters:
content_terms: List of terms that should appear in document content
operator: "and" (all terms must appear) or "or" (any term can appear)
exclude_terms: Optional list of terms to exclude from results
order_by: Sort results by field
page_size: Number of results to return
Returns: Dictionary with search results
Example: find_documents_by_content(["DNA", "extraction"], operator="and")
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content_terms | Yes | ||
exclude_terms | No | ||
operator | No | and | |
order_by | No | lastModified desc | |
page_size | No |