Guest User

Untitled

a guest
Aug 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. const typeExtensions = `
  2. extend type user {
  3. city_weather: city_weather,
  4. }
  5. type city_weather {
  6. temp: String
  7. min_temp: String
  8. max_temp: String
  9. city_name: String!
  10. applicable_date: String!
  11. }
  12. `;
Add Comment
Please, Sign In to add comment