sdy

remove first

1 -type Query {
2 - hello(text: String): String!
3 -}
1 -export default {
2 - Query : {
3 - hello: (_, args) => {
4 - const { text } = args;
5 - return text;
6 - }
7 - }
8 -}
...\ No newline at end of file ...\ No newline at end of file