Added query param #20298
This commit is contained in:
parent
58e0e38300
commit
9d9d0e3fe0
|
@ -2,6 +2,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|||
|
||||
# Changelog for Resource Registry API
|
||||
|
||||
## [v4.1.1-SNAPSHOT]
|
||||
|
||||
- Added INCLUDE_RELATION_PARAM param in AccessPath used by query APIs [#20298]
|
||||
|
||||
## [v4.1.0]
|
||||
|
||||
- Added ContextCache utilities
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -10,7 +10,7 @@
|
|||
|
||||
<groupId>org.gcube.information-system</groupId>
|
||||
<artifactId>resource-registry-api</artifactId>
|
||||
<version>4.1.0</version>
|
||||
<version>4.1.1-SNAPSHOT</version>
|
||||
<name>Resource Registry API</name>
|
||||
<description>Resource Registry API is a library containing classes shared across resource-registry-* components</description>
|
||||
|
||||
|
|
|
@ -37,6 +37,7 @@ public class AccessPath {
|
|||
public static final String REFERENCE_PARAM = "reference";
|
||||
public static final String POLYMORPHIC_PARAM = "polymorphic";
|
||||
public static final String DIRECTION_PARAM = "direction";
|
||||
public static final String INCLUDE_RELATION_PARAM = "includeRelation";
|
||||
|
||||
public static final String CURRENT_CONTEXT = "CURRENT_CONTEXT";
|
||||
|
||||
|
|
Loading…
Reference in New Issue