Skip to content

Commit

Permalink
Merge pull request #27771 from phillip-kruger/graphql-revert
Browse files Browse the repository at this point in the history
GraphQL revert custom field data fetcher
  • Loading branch information
gsmet authored Sep 7, 2022
2 parents 1785044 + 622298c commit b4541cb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 35 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
package io.quarkus.smallrye.graphql.runtime.spi.datafetcher;

import io.smallrye.graphql.execution.datafetcher.PlugableBatchableDataFetcher;
import io.smallrye.graphql.execution.datafetcher.PlugableDataFetcher;
import io.smallrye.graphql.schema.model.Field;
import io.smallrye.graphql.schema.model.Operation;
import io.smallrye.graphql.schema.model.Reference;
import io.smallrye.graphql.schema.model.Type;
import io.smallrye.graphql.spi.DataFetcherService;

Expand Down Expand Up @@ -34,9 +31,4 @@ public PlugableBatchableDataFetcher getDefaultDataFetcher(Operation operation, T
public PlugableBatchableDataFetcher getCompletionStageDataFetcher(Operation operation, Type type) {
return new QuarkusCompletionStageDataFetcher(operation, type);
}

@Override
public PlugableDataFetcher getFieldDataFetcher(Field field, Type type, Reference owner) {
return new QuarkusFieldDataFetcher(field, type, owner);
}
}

This file was deleted.

0 comments on commit b4541cb

Please sign in to comment.