[JAVA-14663] Update Graphql code for Boot 2.7.x changes and move to new module (#12729)

This commit is contained in:
Haroon Khan
2022-10-07 18:21:41 +01:00
committed by GitHub
parent 4b517ba890
commit fafadd5474
29 changed files with 452 additions and 249 deletions

View File

@@ -0,0 +1,14 @@
package com.baeldung.graphql;
import lombok.Data;
@Data
public class Post {
private String id;
private String title;
private String text;
private String category;
private String authorId;
}