graphql.schema.GraphQLFieldsContainer Maven / Gradle / Ivy
package graphql.schema;
import java.util.List;
/**
* Types that can contain output fields are marked with this interface
*/
public interface GraphQLFieldsContainer extends GraphQLType {
GraphQLFieldDefinition getFieldDefinition(String name);
List getFieldDefinitions();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy