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 11package graphql .kickstart .spring ;
22
3- import graphql .kickstart .execution .context .GraphQLContext ;
3+ import graphql .kickstart .execution .context .GraphQLKickstartContext ;
44import 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 number Diff line number Diff line change 11package graphql .kickstart .spring .webflux ;
22
3- import graphql .kickstart .execution .context .GraphQLContext ;
3+ import graphql .kickstart .execution .context .GraphQLKickstartContext ;
44import org .springframework .web .reactive .socket .WebSocketSession ;
55
6- public interface GraphQLSpringWebSocketSessionContext extends GraphQLContext {
6+ public interface GraphQLSpringWebSocketSessionContext extends GraphQLKickstartContext {
77
88 WebSocketSession getWebSocketSession ();
99}
You can’t perform that action at this time.
0 commit comments