Guest User

Untitled

a guest
Dec 18th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. axios.get('path/to/api/users', { params: {
  2. sort: {
  3. byField: 'name',
  4. orderBy: 'DESK'
  5. },
  6. filters: {
  7. status: 'active',
  8. country: 'spain'
  9. },
  10. search: 'pablo'
  11. }});
  12.  
  13. entities: {
  14. users: {
  15. byId: {
  16. 0: {},
  17. 1: {},
  18. },
  19. allIds: [0, 1]
  20. },
  21. posts: {
  22. byId: {
  23. 0: {},
  24. },
  25. allIds: [0]
  26. }
  27. }
Add Comment
Please, Sign In to add comment