sdy

remove async, change return syntax

1 export default { 1 export default {
2 Query: { 2 Query: {
3 - TestQL: async (_, args) => { 3 + TestQL: (_, args) => {
4 - const { text } = args; 4 + return args.text;
5 - return text;
6 }, 5 },
7 }, 6 },
8 }; 7 };
......