Added task06

This commit is contained in:
Julius Freudenberger 2023-05-04 17:32:00 +02:00
parent 70bc689ad5
commit 704c0d0fcd
24 changed files with 1104 additions and 0 deletions

View file

@ -0,0 +1 @@
spring.graphql.graphiql.enabled=true

View file

@ -0,0 +1,9 @@
type Query {
helloWorld: HelloWorld!
}
type HelloWorld {
message: String
}
# TODO 1: Add type definitions for the blog service