Advertisement
Guest User

Untitled

a guest
Dec 28th, 2015
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. 1. RETURN ONLY AUTHOR ID
  2.  
  3. {
  4. id: 1,
  5. title: 'best playlist ever',
  6. author: 12
  7. }
  8.  
  9. ---
  10.  
  11. 2. RETURN ABBREVIATED AUTHOR CONTAINING ONLY ID
  12.  
  13. {
  14. id: 1,
  15. title: 'best playlist ever',
  16. author: {
  17. id: 12
  18. }
  19. }
  20.  
  21. ---
  22.  
  23. 3. RETURN WHOLE AUTHOR
  24.  
  25. {
  26. id: 1,
  27. title: 'best playlist ever',
  28. author: {
  29. id: 12,
  30. some: 'other attribute',
  31. another: 'attribute'
  32. }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement