graphql.schema.GraphQLFieldsContainer Maven / Gradle / Ivy
The newest version!
package graphql.schema;
import java.util.List;
public interface GraphQLFieldsContainer extends GraphQLType {
GraphQLFieldDefinition getFieldDefinition(String name);
List getFieldDefinitions();
}