graphql.language.NamedNode Maven / Gradle / Ivy
package graphql.language;
import graphql.PublicApi;
/**
* Represents a language node that has a name
*/
@PublicApi
public interface NamedNode extends Node {
/**
* @return the name of this node
*/
String getName();
}