Skip to content

Commit

Permalink
Enable microprofile-graphql-client-quickstart, update netlify URL
Browse files Browse the repository at this point in the history
Server swapi.dev is up again so the netlify application works well again
Update of GrapQL endpoint to https://swapi-graphql.netlify.app/graphql
  • Loading branch information
rsvoboda committed Jan 23, 2025
1 parent cd5834c commit 496bf38
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# typesafe client config
quarkus.smallrye-graphql-client.star-wars-typesafe.url=https://swapi-graphql.netlify.app/.netlify/functions/index
quarkus.smallrye-graphql-client.star-wars-typesafe.url=https://swapi-graphql.netlify.app/graphql

# dynamic client config
quarkus.smallrye-graphql-client.star-wars-dynamic.url=https://swapi-graphql.netlify.app/.netlify/functions/index
quarkus.smallrye-graphql-client.star-wars-dynamic.url=https://swapi-graphql.netlify.app/graphql
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
package org.acme.microprofile.graphql.client;

import io.quarkus.test.junit.QuarkusIntegrationTest;
import org.junit.jupiter.api.Disabled;

@QuarkusIntegrationTest
@Disabled("Blocked by https://github.com/quarkusio/quarkus/issues/45334")
public class GraphQLClientIT extends GraphQLClientTest {

}
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package org.acme.microprofile.graphql.client;

import io.quarkus.test.junit.QuarkusTest;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import java.util.List;
Expand All @@ -10,7 +9,6 @@
import static org.junit.jupiter.api.Assertions.assertTrue;

@QuarkusTest
@Disabled("Blocked by https://github.com/quarkusio/quarkus/issues/45334")
public class GraphQLClientTest {

@Test
Expand Down

0 comments on commit 496bf38

Please sign in to comment.