Skip to content

Commit 209001e

Browse files
Added build method with explorerScope in ExploreRequestBuilder
1 parent a03e544 commit 209001e

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

hypertrace-graphql-explorer-schema/src/main/java/org/hypertrace/graphql/explorer/request/DefaultExploreRequestBuilder.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ public Single<ExploreRequest> build(
8383
return this.build(requestContext, explorerScope, arguments, selectionSet);
8484
}
8585

86-
private Single<ExploreRequest> build(
86+
@Override
87+
public Single<ExploreRequest> build(
8788
GraphQlRequestContext requestContext,
8889
String explorerScope,
8990
Map<String, Object> arguments,

hypertrace-graphql-explorer-schema/src/main/java/org/hypertrace/graphql/explorer/request/ExploreRequestBuilder.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,10 @@ Single<ExploreRequest> build(
1010
GraphQlRequestContext context,
1111
Map<String, Object> arguments,
1212
DataFetchingFieldSelectionSet selectionSet);
13+
14+
Single<ExploreRequest> build(
15+
GraphQlRequestContext requestContext,
16+
String explorerScope,
17+
Map<String, Object> arguments,
18+
DataFetchingFieldSelectionSet selectionSet);
1319
}

0 commit comments

Comments
 (0)