P3P*_*3P5 7 java spring-boot graphql graphql-java
我是 GrapQL 的新手。我正在尝试将它与弹簧靴一起使用。我可以成功进行查询,它正在返回我需要的数据,但我现在想使用变异。我需要在他注册时向数据库添加一个用途。
这是我的 schema.graphqls 文件:
type Token {
token: String
}
type Register {
message: String
}
type User {
username: String!
firstName: String!
lastName: String!
password: String!
role: String!
}
type Query {
login(username: String, password: String): Token
}
type Mutation {
register(input: RegisterUserInput!): Register
}
input RegisterUserInput {
username: String!
firstName: String!
lastName: String!
password: String!
role: String!
}
schema {
query: Query
mutation: Mutation
}
Run Code Online (Sandbox Code Playgroud)
所以你可以看到 register 是 Mutation 类型,它和 Query 一样添加到模式中。但出于某种原因,它看起来没有进入 Mutation,它只是试图在 Query 中查找类型。
这是我的控制器:
@Autowired
private UserService userService;
/**
* Login the user and return generated token
* @param query
* @return String token
*/
@PostMapping("/login")
public ResponseEntity<Object> login(@RequestBody String query){
ExecutionResult executionResult = userService.getGraphQL().execute(query);
// Check if there are errors
if(!executionResult.getErrors().isEmpty()){
return new ResponseEntity<>(executionResult.getErrors().get(0).getMessage(), HttpStatus.UNAUTHORIZED);
}
return new ResponseEntity<>(executionResult, HttpStatus.OK);
}
/**
* Create new user and save him to database
* @param mutation
* @return String message
*/
@PostMapping("/register")
public ResponseEntity<Object> register(@RequestBody String mutation){
ExecutionResult executionResult = userService.getGraphQL().execute(mutation);
// Check if there are errors
if(!executionResult.getErrors().isEmpty()){
return new ResponseEntity<>(executionResult.getErrors().get(0).getMessage(), HttpStatus.UNAUTHORIZED);
}
return new ResponseEntity<>(executionResult, HttpStatus.OK);
}
Run Code Online (Sandbox Code Playgroud)
正如我所说,登录工作正常,但注册返回我在标题中提到的错误。
我的服务类:
@Value("classpath:graphql-schema/schema.graphqls")
Resource resource;
private GraphQL graphQL;
@Autowired
private LoginDataFetcher loginDataFetcher;
@Autowired
private RegisterDataFetcher registerDataFetcher;
@PostConstruct
public void loadSchema() throws IOException{
// Get the schema
File schemaFile = resource.getFile();
// Parse schema
TypeDefinitionRegistry typeDefinitionRegistry = new SchemaParser().parse(schemaFile);
RuntimeWiring runtimeWiring = buildRuntimeWiring();
GraphQLSchema graphQLSchema = new SchemaGenerator().makeExecutableSchema(typeDefinitionRegistry, runtimeWiring);
graphQL = GraphQL.newGraphQL(graphQLSchema).build();
}
private RuntimeWiring buildRuntimeWiring() {
return RuntimeWiring.newRuntimeWiring()
.type("Query", typeWiring ->
typeWiring
.dataFetcher("login", loginDataFetcher))
.type("Mutation", typeWiring ->
typeWiring
.dataFetcher("register", registerDataFetcher))
.build();
}
public GraphQL getGraphQL() {
return graphQL;
}
Run Code Online (Sandbox Code Playgroud)
我的 LoginDataFetcher:
@Autowired
private AppUserRepository appUserRepository;
private JwtGenerator jwtGenerator;
public LoginDataFetcher(JwtGenerator jwtGenerator) {
this.jwtGenerator = jwtGenerator;
}
@Override
public TokenDAO get(DataFetchingEnvironment dataFetchingEnvironment) {
String username = dataFetchingEnvironment.getArgument("username");
String password = dataFetchingEnvironment.getArgument("password");
AppUser appUser = appUserRepository.findByUsername(username);
// If user is not foung
if(appUser == null){
throw new RuntimeException("Username does not exist");
}
// If the user is fount check passwords
if(!appUser.getPassword().equals(password)){
throw new RuntimeException("Incorrect password");
}
// Generate the token
String token = jwtGenerator.generate(appUser);
return new TokenDAO(token);
}
Run Code Online (Sandbox Code Playgroud)
RegisterDataFetcher:
@Autowired
private AppUserRepository appUserRepository;
@Override
public RegisterDAO get(DataFetchingEnvironment dataFetchingEnvironment) {
String username = dataFetchingEnvironment.getArgument("username");
String firstName = dataFetchingEnvironment.getArgument("firstName");
String lastName = dataFetchingEnvironment.getArgument("lastName");
String password = dataFetchingEnvironment.getArgument("password");
String role = dataFetchingEnvironment.getArgument("role");
AppUser appUser = appUserRepository.findByUsername(username);
// Check if username exists
if(appUser != null){
throw new RuntimeException("Username already taken");
}
AppUser newAppUser = new AppUser(username, password, role, firstName, lastName);
// Save new user
appUserRepository.save(newAppUser);
return new RegisterDAO("You have successfully registered");
}
Run Code Online (Sandbox Code Playgroud)
我在控制台中遇到的错误:
graphql.GraphQL : Query failed to validate : '{
register(username: "user", firstName: "Bla", lastName: "Blabla", password: "password", role: "DEVELOPER") {
message
}
}'
Run Code Online (Sandbox Code Playgroud)
感谢您的帮助。
根据我得到的答案,我像这样更改了我的架构文件:
query UserQuery{
login(username: String, password: String){
token
}
}
mutation UserMutation{
register(input: RegisterUserInput) {
message
}
}
input RegisterUserInput {
username: String!
firstName: String!
lastName: String!
password: String!
role: String!
}
schema {
query: UserQuery
mutation: UserMutation
}
Run Code Online (Sandbox Code Playgroud)
但现在我收到此错误:
解析类型“query”时不存在操作类型“UserQuery” 解析类型“mutation”时不存在操作类型“UserMutation”
那么现在的问题是什么?我怎样才能使这项工作?
你告诉 GraphQL 你正在请求一个 Query,而实际上register是一个 Mutation。编写 GraphQL 请求时,查询的语法通常遵循以下格式:
query someOperationName {
login {
# other fields
}
}
Run Code Online (Sandbox Code Playgroud)
在编写突变时,您只需指定:
mutation someOperationName {
register {
# other fields
}
}
Run Code Online (Sandbox Code Playgroud)
您可以不使用操作名称,但最好包含它。您可能会看到以下格式的示例:
{
someQuery {
# other fields
}
}
Run Code Online (Sandbox Code Playgroud)
在这种情况下,操作名称和操作类型(查询与变异)都被省略了。这仍然是一个有效的请求,因为 GraphQL 只是假设query您离开操作类型时的意思。从规范:
如果一个文档只包含一个操作,那么该操作可能是未命名的或以简写形式表示,它省略了查询关键字和操作名称。
所以在你的请求中,GraphQL 假设register是一个查询,而实际上它是一个突变,结果它返回一个错误。
同样,在编写请求时,最好始终包含操作名称和查询/变异关键字。
| 归档时间: |
|
| 查看次数: |
20739 次 |
| 最近记录: |