graphql.language.TypeDefinition Maven / Gradle / Ivy
package graphql.language;
import java.util.List;
public interface TypeDefinition extends Definition{
/**
* @return the name of the type being defined.
*/
String getName();
/**
* @return the directives of this type being defined
*/
List getDirectives();
/**
* @return a deep copy of this type definition
*/
T deepCopy();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy