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 graphql.ExecutionInput;
import graphql.Internal;

import java.util.function.Function;

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

    @Override
    public PreparsedDocumentEntry getDocument(ExecutionInput executionInput, Function parseAndValidateFunction) {
        return parseAndValidateFunction.apply(executionInput);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy