graphql.language.DescribedNode Maven / Gradle / Ivy
package graphql.language;
import graphql.PublicApi;
/**
* Represents a node that can contain a description.
*/
@PublicApi
public interface DescribedNode extends Node {
/**
* @return the description of this node
*/
Description getDescription();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy