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
Appwrite is an open-source backend as a service server that abstract and simplify complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way.
7
7
Use the PHP SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools.
Copy file name to clipboardExpand all lines: docs/avatars.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,6 +95,6 @@ GET https://appwrite.io/v1/avatars/qr
95
95
| --- | --- | --- | --- |
96
96
| text | string |**Required** Plain text to be converted to QR code image. ||
97
97
| size | integer | QR code size. Pass an integer between 0 to 1000. Defaults to 400. | 400 |
98
-
| margin | integer | Margin From Edge. Pass an integer between 0 to 10. Defaults to 1. | 1 |
98
+
| margin | integer | Margin from edge. Pass an integer between 0 to 10. Defaults to 1. | 1 |
99
99
| download | integer | Return resulting image with 'Content-Disposition: attachment ' headers for the browser to start downloading it. Pass 0 for no header, or 1 for otherwise. Default value is set to 0. | 0 |
Copy file name to clipboardExpand all lines: docs/database.md
+17-5Lines changed: 17 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -96,12 +96,12 @@ GET https://appwrite.io/v1/database/collections/{collectionId}/documents
96
96
| filters | array | Array of filter strings. Each filter is constructed from a key name, comparison operator (=, !=, >, <, <=, >=) and a value. You can also use a dot (.) separator in attribute names to filter by child document attributes. Examples: 'name=John Doe' or 'category.$id>=5bed2d152c362'. |[]|
97
97
| offset | integer | Offset value. Use this value to manage pagination. | 0 |
98
98
| limit | integer | Maximum number of documents to return in response. Use this value to manage pagination. | 50 |
99
-
|order-field| string | Document field that results will be sorted by. | $id |
100
-
|order-type| string | Order direction. Possible values are DESC for descending order, or ASC for ascending order. | ASC |
101
-
|order-cast| string | Order field type casting. Possible values are int, string, date, time or datetime. The database will attempt to cast the order field to the value you pass here. The default value is a string. | string |
99
+
|orderField| string | Document field that results will be sorted by. | $id |
100
+
|orderType| string | Order direction. Possible values are DESC for descending order, or ASC for ascending order. | ASC |
101
+
|orderCast| string | Order field type casting. Possible values are int, string, date, time or datetime. The database will attempt to cast the order field to the value you pass here. The default value is a string. | string |
102
102
| search | string | Search query. Enter any free text search. The database will try to find a match against all document attributes and children. ||
103
-
| first | integer | Return only first document. Pass 1 for true or 0 for false. The default value is 0. | 0 |
104
-
| last | integer | Return only last document. Pass 1 for true or 0 for false. The default value is 0. | 0 |
103
+
| first | integer | Return only the first document. Pass 1 for true or 0 for false. The default value is 0. | 0 |
104
+
| last | integer | Return only the last document. Pass 1 for true or 0 for false. The default value is 0. | 0 |
| collectionId | string |**Required** Collection unique ID. You can create a new collection with validation rules using the Database service [server integration](/docs/database?platform=server#createCollection). ||
0 commit comments