Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. {
  2. ...
  3. config: {
  4. type_1: {
  5. special_config_1: String!
  6. special_config_2: Boolean
  7. }
  8. type_2: {
  9. special_config_3: [Int]
  10. }
  11. }
  12. }
  13.  
  14. {
  15. config: ConfigObject,
  16. }
  17.  
  18. configObject:
  19.  
  20. {
  21. type1: Type1Object,
  22. type2: Type2Object,
  23. }
  24.  
  25. Type1Object:
  26.  
  27. {
  28. special_config_1: String!
  29. ...
  30. }
  31.  
  32. {
  33. ...
  34. config: ConfigObject,
  35. }
  36.  
  37. ConfigObject:
  38.  
  39. {
  40. type_1__special_config_1: String!,
  41. type_1__special_config_2: Boolean,
  42. type_2__special_config_3: [Int],
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement