Codex Assistant
2025-10-05 0a48616045ddce1562584543a0e89e5144051fde
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.rongyichuang.common.api;
 
import org.springframework.graphql.data.method.annotation.QueryMapping;
import org.springframework.stereotype.Controller;
 
@Controller
public class HelloGraphqlApi {
 
    @QueryMapping
    public String hello() {
        return "Hello GraphQL!";
    }
}