This repository was archived by the owner on Dec 19, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
graphql-kickstart-spring-support/src/main/java/graphql/kickstart/spring
graphql-kickstart-spring-webflux/src/main/java/graphql/kickstart/spring/webflux Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
package graphql .kickstart .spring ;
2
2
3
- import graphql .kickstart .execution .context .GraphQLContext ;
3
+ import graphql .kickstart .execution .context .GraphQLKickstartContext ;
4
4
import org .springframework .web .server .ServerWebExchange ;
5
5
6
- public interface GraphQLSpringContext extends GraphQLContext {
6
+ public interface GraphQLSpringContext extends GraphQLKickstartContext {
7
7
8
8
ServerWebExchange getServerWebExchange ();
9
9
}
Original file line number Diff line number Diff line change 1
1
package graphql .kickstart .spring .webflux ;
2
2
3
- import graphql .kickstart .execution .context .GraphQLContext ;
3
+ import graphql .kickstart .execution .context .GraphQLKickstartContext ;
4
4
import org .springframework .web .reactive .socket .WebSocketSession ;
5
5
6
- public interface GraphQLSpringWebSocketSessionContext extends GraphQLContext {
6
+ public interface GraphQLSpringWebSocketSessionContext extends GraphQLKickstartContext {
7
7
8
8
WebSocketSession getWebSocketSession ();
9
9
}
You can’t perform that action at this time.
0 commit comments