PHP Classes

File: tests/functional/001_records/057_filter_on_and.log

Recommend this page to a friend!
  Classes of Punto Waskito   PHP CRUD API   tests/functional/001_records/057_filter_on_and.log   Download  
File: tests/functional/001_records/057_filter_on_and.log
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP CRUD API
Provide API to manipulate database table records
Author: By
Last change:
Date: 3 years ago
Size: 520 bytes
 

Contents

Class file image Download
=== GET /records/posts?include=id&filter=id,ge,1&filter=id,le,2 === 200 Content-Type: application/json; charset=utf-8 Content-Length: 31 {"records":[{"id":1},{"id":2}]} === GET /records/posts?include=id&filter[]=id,ge,1&filter[]=id,le,2 === 200 Content-Type: application/json; charset=utf-8 Content-Length: 31 {"records":[{"id":1},{"id":2}]} === GET /records/posts?include=id&filter[0]=id,ge,1&filter[1]=id,le,2 === 200 Content-Type: application/json; charset=utf-8 Content-Length: 31 {"records":[{"id":1},{"id":2}]}