sdy

first typedef, resolver for test

type Query {
hello(text: String): String!
}
export default {
Query : {
hello: (_, args) => {
const { text } = args;
return text;
}
}
}
\ No newline at end of file