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

graphql.language.ImplementingTypeDefinition Maven / Gradle / Ivy

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


import graphql.PublicApi;

import java.util.List;

/**
 * A {@link TypeDefinition} that might implement interfaces
 *
 * @param  for two
 */
@PublicApi
public interface ImplementingTypeDefinition extends TypeDefinition {

    List getImplements();

    List getFieldDefinitions();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy