Guest User

Untitled

a guest
Jul 22nd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. import gql from 'graphql-tag';
  2.  
  3. export default gql`
  4. query getAuthor($id: ID!) {
  5. author(id: $id) {
  6. id
  7. name
  8. age
  9. books {
  10. id
  11. title
  12. genre
  13. }
  14. }
  15. }
  16. `;
Add Comment
Please, Sign In to add comment