jfrog / artifactory-client-java

Artifactory REST Client Java API bindings
Apache License 2.0
319 stars 153 forks source link

How to specify `transitive` keyword to aql? #320

Open LeiYangGH opened 3 years ago

LeiYangGH commented 3 years ago

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 like items.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.

eyalbe4 commented 3 years ago

@LeiYangGH - Would you like to contribute this through a pull request? We'd gladly accept it.

LeiYangGH commented 3 years ago

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