2727
2828import static graphql .Assert .assertNotNull ;
2929
30- @ PublicApi
3130public class GraphQL {
3231
3332 private static final Logger log = LoggerFactory .getLogger (GraphQL .class );
@@ -49,7 +48,6 @@ public class GraphQL {
4948 *
5049 * @deprecated use the {@link #newGraphQL(GraphQLSchema)} builder instead. This will be removed in a future version.
5150 */
52- @ InternalApi
5351 public GraphQL (GraphQLSchema graphQLSchema ) {
5452 //noinspection deprecation
5553 this (graphQLSchema , null , null );
@@ -63,7 +61,6 @@ public GraphQL(GraphQLSchema graphQLSchema) {
6361 *
6462 * @deprecated use the {@link #newGraphQL(GraphQLSchema)} builder instead. This will be removed in a future version.
6563 */
66- @ InternalApi
6764 public GraphQL (GraphQLSchema graphQLSchema , ExecutionStrategy queryStrategy ) {
6865 //noinspection deprecation
6966 this (graphQLSchema , queryStrategy , null );
@@ -78,7 +75,6 @@ public GraphQL(GraphQLSchema graphQLSchema, ExecutionStrategy queryStrategy) {
7875 *
7976 * @deprecated use the {@link #newGraphQL(GraphQLSchema)} builder instead. This will be removed in a future version.
8077 */
81- @ InternalApi
8278 public GraphQL (GraphQLSchema graphQLSchema , ExecutionStrategy queryStrategy , ExecutionStrategy mutationStrategy ) {
8379 this (graphQLSchema , queryStrategy , mutationStrategy , null , DEFAULT_EXECUTION_ID_PROVIDER , NoOpInstrumentation .INSTANCE );
8480 }
@@ -93,7 +89,6 @@ public GraphQL(GraphQLSchema graphQLSchema, ExecutionStrategy queryStrategy, Exe
9389 *
9490 * @deprecated use the {@link #newGraphQL(GraphQLSchema)} builder instead. This will be removed in a future version.
9591 */
96- @ InternalApi
9792 public GraphQL (GraphQLSchema graphQLSchema , ExecutionStrategy queryStrategy , ExecutionStrategy mutationStrategy , ExecutionStrategy subscriptionStrategy ) {
9893 this (graphQLSchema , queryStrategy , mutationStrategy , subscriptionStrategy , DEFAULT_EXECUTION_ID_PROVIDER , NoOpInstrumentation .INSTANCE );
9994 }
@@ -119,7 +114,6 @@ public static Builder newGraphQL(GraphQLSchema graphQLSchema) {
119114 }
120115
121116
122- @ PublicApi
123117 public static class Builder {
124118 private GraphQLSchema graphQLSchema ;
125119 private ExecutionStrategy queryExecutionStrategy = new SimpleExecutionStrategy ();
0 commit comments