Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit 3055fef

Browse files
committed
fix: replace GraphQLKickstartContext
1 parent 6dc48ae commit 3055fef

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package graphql.kickstart.spring;
22

3-
import graphql.kickstart.execution.context.GraphQLContext;
3+
import graphql.kickstart.execution.context.GraphQLKickstartContext;
44
import org.springframework.web.server.ServerWebExchange;
55

6-
public interface GraphQLSpringContext extends GraphQLContext {
6+
public interface GraphQLSpringContext extends GraphQLKickstartContext {
77

88
ServerWebExchange getServerWebExchange();
99
}
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package graphql.kickstart.spring.webflux;
22

3-
import graphql.kickstart.execution.context.GraphQLContext;
3+
import graphql.kickstart.execution.context.GraphQLKickstartContext;
44
import org.springframework.web.reactive.socket.WebSocketSession;
55

6-
public interface GraphQLSpringWebSocketSessionContext extends GraphQLContext {
6+
public interface GraphQLSpringWebSocketSessionContext extends GraphQLKickstartContext {
77

88
WebSocketSession getWebSocketSession();
99
}

0 commit comments

Comments
 (0)