All Downloads are FREE. Search and download functionalities are using the official Maven repository.

graphql.schema.GraphQLModifiedType Maven / Gradle / Ivy

The newest version!
package graphql.schema;


import graphql.PublicApi;

/**
 * A modified type wraps another graphql type and modifies it behavior
 *
 * @see graphql.schema.GraphQLNonNull
 * @see graphql.schema.GraphQLList
 */
@PublicApi
public interface GraphQLModifiedType extends GraphQLType {

    GraphQLType getWrappedType();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy