Advertisement
Guest User

Untitled

a guest
Jul 15th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. {
  2. allEmployees(filter: {tags: {contains: "teamplayer"}}) {
  3. nodes {
  4. firstName
  5. lastName
  6. tags
  7. }
  8. }
  9. }
  10.  
  11. {
  12. "data": {
  13. "allEmployees": {
  14. "nodes": [
  15. {
  16. firstName: 'Russell'
  17. lastName: 'Dodds'
  18. tags: ['teamplayer', 'punctual']
  19. },
  20. {
  21. firstName: 'Emma'
  22. lastName: 'Samsin'
  23. tags: ['teamplayer']
  24. }
  25. ]
  26. }
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement