graphql.schema.idl.errors.QueryOperationMissingError Maven / Gradle / Ivy
package graphql.schema.idl.errors;
import graphql.Internal;
@Internal
public class QueryOperationMissingError extends BaseError {
public QueryOperationMissingError() {
super(null, "A schema MUST have a 'query' operation defined");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy