Created
September 16, 2020 18:51
-
-
Save cescoferraro/385e2bd40ddbd2c6afda9a7e79d858ad to your computer and use it in GitHub Desktop.
stackoverflow help
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package br.com.b2breservas.api.graphql.mutation; | |
import graphql.schema.DataFetcher; | |
import org.springframework.stereotype.Component; | |
@Component | |
public class GraphQLDataFetchers { | |
public DataFetcher createUpdateIntegration() { | |
return dataFetchingEnvironment -> { | |
return 33; | |
}; | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment