Skip to content

Instantly share code, notes, and snippets.

@osha7
Created June 22, 2021 00:29
Show Gist options
  • Save osha7/50763a60d35c38416d35ecf0cb9fead0 to your computer and use it in GitHub Desktop.
Save osha7/50763a60d35c38416d35ecf0cb9fead0 to your computer and use it in GitHub Desktop.
import { Resolver, Query } from "type-graphql";
@Resolver()
export class HelloResolver {
//queries or mutations:
@Query(() => String)
hello() {
return "hello world";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment