api de gestion de ticket, basé sur php-crud-api. Le but est de décorrélé les outils de gestion des données, afin
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

057_filter_on_and.log 520B

123456789101112131415161718192021222324
  1. ===
  2. GET /records/posts?include=id&filter=id,ge,1&filter=id,le,2
  3. ===
  4. 200
  5. Content-Type: application/json; charset=utf-8
  6. Content-Length: 31
  7. {"records":[{"id":1},{"id":2}]}
  8. ===
  9. GET /records/posts?include=id&filter[]=id,ge,1&filter[]=id,le,2
  10. ===
  11. 200
  12. Content-Type: application/json; charset=utf-8
  13. Content-Length: 31
  14. {"records":[{"id":1},{"id":2}]}
  15. ===
  16. GET /records/posts?include=id&filter[0]=id,ge,1&filter[1]=id,le,2
  17. ===
  18. 200
  19. Content-Type: application/json; charset=utf-8
  20. Content-Length: 31
  21. {"records":[{"id":1},{"id":2}]}