Gaurav_Mathur

graphql schema

Feb 25th, 2021 (edited)
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. type SomeData{
  2. data : Data
  3. }
  4. type Data{
  5. attribute1 : [DataArray]
  6. attribute2 : [NestedDataArray]
  7. }
  8. type NestedDataArray{
  9. nestedAttribute1 : [DataArray]
  10. }
  11. type DataArray{
  12. key : String
  13. region : String
  14. }
Add Comment
Please, Sign In to add comment