sdy

add Test Query

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