Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. #query {
  2. # person {
  3. # id
  4. # name
  5. # dni
  6. # }
  7. # }
  8.  
  9. # mutation {
  10. # createPerson (input: {password: "senha", party: "vamo", dni: "123-3",name: "mp,", state: "RS"}) {
  11. # id
  12. # }
  13. # }
  14.  
  15. # mutation {
  16. # # createDepute (input:{dni: "123-3", createdAt:"12102019"}) {
  17. # # id
  18. # # }
  19. # createLawProject (input: {depute: "123-3", year: 2019, interest: "futebola", url: "urll", conclusive: false,menu: "Galinha Assadinha"}) {
  20. # id
  21. # }
  22. # }
  23.  
  24. query {
  25. lawProject (code: "PL 3/2019") {
  26. id
  27. }
  28. projects {
  29. id
  30. depute {
  31. id
  32. laws
  33. person {
  34. name
  35. }
  36. }
  37. code
  38. year
  39. situation
  40. historic
  41. interest
  42. }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement