graphql.schema.GraphQLInputType Maven / Gradle / Ivy
package graphql.schema;
import graphql.PublicApi;
/**
* Input types represent those set of types that are allowed to be accepted as graphql mutation input, as opposed
* to {@link graphql.schema.GraphQLOutputType}s which can only be used as graphql response output.
*/
@PublicApi
public interface GraphQLInputType extends GraphQLType, GraphQLInputSchemaElement {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy