Skip to content

Commit a79a36c

Browse files
committed
Move endpoint configuration to "application.properties"
See: quarkusio/quarkus#44293
1 parent f443506 commit a79a36c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

quarkus-graphql-client/src/main/java/gitlab/api/WorkitemClientApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import io.smallrye.graphql.client.typesafe.api.GraphQLClientApi;
2727
import io.smallrye.graphql.client.typesafe.api.NestedParameter;
2828

29-
@GraphQLClientApi(configKey = "gitlab", endpoint = "https://gitlab.com/api/graphql")
29+
@GraphQLClientApi(configKey = "gitlab")
3030
public interface WorkitemClientApi {
3131

3232
/**
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
quarkus.log.category."io.smallrye.graphql.client".level=TRACE
22
quarkus.log.category."io.smallrye.graphql.client".min-level=TRACE
3+
4+
quarkus.smallrye-graphql-client.gitlab.url=https://gitlab.com/api/graphql
5+
# quarkus.smallrye-graphql-client.gitlab.header.Authorization=Bearer glpat-*****

0 commit comments

Comments
 (0)