yudhaez0212

Untitled

Nov 9th, 2020
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. module.exports = `
  2. type Banner {
  3. id: ID!
  4. name: String
  5. imageUrl: String!
  6. description: String
  7. }
  8. type Banners {
  9. result: [Banner!]!
  10. }
  11.  
  12. input BannerData {
  13. name: String
  14. imageUrl: String!
  15. description: String
  16. }
  17. input BannerDataWithId {
  18. id: ID!
  19. name: String
  20. imageUrl: String!
  21. description: String
  22. }
  23. `;
Add Comment
Please, Sign In to add comment