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

graphql.execution.preparsed.NoOpPreparsedDocumentProvider Maven / Gradle / Ivy

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


import java.util.function.Function;

public class NoOpPreparsedDocumentProvider implements PreparsedDocumentProvider {
    public static final NoOpPreparsedDocumentProvider INSTANCE = new NoOpPreparsedDocumentProvider();

    @Override
    public PreparsedDocumentEntry get(String query, Function compute) {
        return compute.apply(query);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy