Advertisement
Guest User

Untitled

a guest
Feb 16th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. const schema = buildSchema(`
  2. type Query {
  3. message: String
  4. course(id: Int!) : Course
  5. }
  6.  
  7. type Course {
  8. id: Int
  9. title: String
  10. author: String
  11. topic: String
  12. }
  13.  
  14. `);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement