Guest User

Untitled

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