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