Skip to content

Instantly share code, notes, and snippets.

@cescoferraro
Created September 16, 2020 18:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cescoferraro/385e2bd40ddbd2c6afda9a7e79d858ad to your computer and use it in GitHub Desktop.
Save cescoferraro/385e2bd40ddbd2c6afda9a7e79d858ad to your computer and use it in GitHub Desktop.
stackoverflow help
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