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

graphql.schema.DataFetchingFieldSelectionSet Maven / Gradle / Ivy

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

import graphql.language.Field;

import java.util.List;
import java.util.Map;
import java.util.function.Supplier;

/**
 * This allows you to retrieve the selection set of fields that have been asked for when the
 * {@link DataFetcher} was invoked
 */
public interface DataFetchingFieldSelectionSet extends Supplier>> {

    /**
     * @return a map of the fields that represent the selection set
     */
    Map> get();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy