You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ The `create`, `read`, `update` and `delete` methods can accept the different par
13
13
-**Customizable search**
14
14
The `search` method can be used for listing records based on some conditions. Conditions can be customize and join each others by different type of conditional operators. Relationships can be used like `read` method. Limitation and offset can be applied to limit records count and start index, that will be useful for pagination too.
15
15
-**Can be used by a single endpoint in API**
16
-
This package doesn't serve API features, but you can set an endpoint to accept those parameters and do CRUD features like GraphQL. (WIP: the single method to accept all parameters will be added.)
16
+
This package doesn't serve API features, but you can set an endpoint to accept those parameters and do CRUD features like GraphQL. There is a method `api` that accepts all parameters and will implement any type of features of this package.
17
17
18
18
#### Run Web App:
19
19
- There is a sample in here. You can create a DB and some tables and records. Make sure you set foreign keys too.
// Search for multiple columns (AND, OR, XOR, ...) of target table (=, LIKE, NOT, ...) and list them ('AND' will be considered for joining conditions of conditions) You can add relationships like read method
Copy file name to clipboardExpand all lines: samples.php
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,9 @@ public static function groupByFirstColumn(...$responses): array
52
52
53
53
// Search for multiple columns (AND, OR, XOR, ...) of target table (=, LIKE, NOT, ...) and list them ('AND' will be considered for joining conditions of conditions) You can add relationships like read method
0 commit comments