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

graphql.language.NamedNode Maven / Gradle / Ivy

There is a newer version: 230521-nf-execution
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy