Skip to content

Commit 3f31575

Browse files
committed
Fix failing test
1 parent 3b9ffb6 commit 3f31575

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

commercetools/commercetools-sdk-java-history/src/main/java/com/commercetools/history/client/ProjectApiRoot.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ public ByProjectKeyByResourceTypeRequestBuilder withResourceTypeValue(String res
4242
return with().withResourceTypeValue(resourceType);
4343
}
4444

45+
@Override
46+
public ByProjectKeyGraphqlRequestBuilder graphql() {
47+
return with().graphql();
48+
}
49+
4550
@Override
4651
public void close() {
4752
if (apiHttpClient == null) {

commercetools/commercetools-sdk-java-history/src/main/java/com/commercetools/history/client/ProjectScopedApiRoot.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ public interface ProjectScopedApiRoot {
77
ByProjectKeyGet get();
88

99
ByProjectKeyByResourceTypeRequestBuilder withResourceTypeValue(String resourceType);
10+
11+
ByProjectKeyGraphqlRequestBuilder graphql();
1012
}

0 commit comments

Comments
 (0)