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

graphql.language.TypeDefinition Maven / Gradle / Ivy

There is a newer version: 230521-nf-execution
Show newest version
package graphql.language;


import java.util.List;

public interface TypeDefinition extends Node, Definition {
    /**
     * @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