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

graphql.schema.GraphQLType Maven / Gradle / Ivy

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


import graphql.PublicApi;

/**
 * All types in graphql have a name
 */
@PublicApi
public interface GraphQLType {
    /**
     * @return the name of the type which MUST fit within the regular expression {@code [_A-Za-z][_0-9A-Za-z]*}
     */
    String getName();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy