peng
2025-11-07 356a9f7a6e789ff152b80f917233b8736dfb0d7f
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!";
    }
}