jfrog_execute_aql_query
Execute Artifactory Query Language (AQL) queries to search for artifacts, builds, or other entities in JFrog Artifactory. Supports complex criteria, sorting, pagination, and searching in remote repositories.
Instructions
Execute an Artifactory Query Language (AQL) query to search for artifacts, builds, or other entities in JFrog Artifactory. AQL is a powerful query language for searching and filtering artifacts in Artifactory repositories. It supports complex criteria, sorting, pagination, and more.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | No | The primary domain to search in. If not specified, it will be extracted from the query. | |
include_fields | No | Fields to include in the results | |
limit | No | Maximum number of results to return | |
offset | No | Number of results to skip | |
query | Yes | The AQL query to execute. Must follow AQL syntax (e.g., items.find({"repo":"my-repo"}).include("name","path")) | |
sort_by | No | Field to sort results by | |
sort_order | No | Sort order | asc |
transitive | No | Whether to search in remote repositories |