Open LeiYangGH opened 3 years ago
@LeiYangGH - Would you like to contribute this through a pull request? We'd gladly accept it.
https://github.com/jfrog/artifactory-client-java/pull/321
please reivew. I don't have enough knowledge to estimate the possible side effects, such as
Is your feature request related to a problem? Please describe.
transitive
is a artifactory feature To enable a search within a remote repository The aql is likeitems.find(“repo”: “remote-repo”).transitive()
Describe the solution you'd like to see Add
AqlQueryBuilder.Transitive()
method.Describe alternatives you've considered
String aql = builder.build() + ".transitive()";
, manually construct the aql string, thus not benefiting fromartifactory-client-java
at all.