graphql.schema.GraphQLNamedInputType 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 GraphQLOutputType}s which can only be used as graphql response output.
*/
@PublicApi
public interface GraphQLNamedInputType extends GraphQLInputType, GraphQLNamedType {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy