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

graphql.schema.GraphQLInputFieldsContainer Maven / Gradle / Ivy

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

import graphql.PublicApi;

import java.util.List;

/**
 * Types that can contain input fields are marked with this interface
 *
 * @see graphql.schema.GraphQLInputType
 */
@PublicApi
public interface GraphQLInputFieldsContainer extends GraphQLNamedType {

    GraphQLInputObjectField getFieldDefinition(String name);

    List getFieldDefinitions();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy