graphql.language.SDLNamedDefinition Maven / Gradle / Ivy
package graphql.language;
import graphql.PublicApi;
/**
* A interface for named Schema Definition Language (SDL) definition.
*
* @param the actual Node type
*/
@PublicApi
public interface SDLNamedDefinition extends SDLDefinition {
/**
* @return The name of this SDL definition
*/
String getName();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy