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: src/services/databases.ts
+62-5Lines changed: 62 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1660,7 +1660,9 @@ export class Databases {
1660
1660
);
1661
1661
}
1662
1662
/**
1663
-
* Create new Documents. Before using this route, you should create a new collection resource using either a [server integration](https://appwrite.io/docs/server/databases#databasesCreateCollection) API or directly from your database console.
1663
+
* **WARNING: Experimental Feature** - This endpoint is experimental and not yet officially supported. It may be subject to breaking changes or removal in future versions.
1664
+
1665
+
Create new Documents. Before using this route, you should create a new collection resource using either a [server integration](https://appwrite.io/docs/server/databases#databasesCreateCollection) API or directly from your database console.
1664
1666
*
1665
1667
* @param {string} databaseId
1666
1668
* @param {string} collectionId
@@ -1697,22 +1699,26 @@ export class Databases {
1697
1699
);
1698
1700
}
1699
1701
/**
1700
-
* Create or update Documents. Before using this route, you should create a new collection resource using either a [server integration](https://appwrite.io/docs/server/databases#databasesCreateCollection) API or directly from your database console.
1702
+
* **WARNING: Experimental Feature** - This endpoint is experimental and not yet officially supported. It may be subject to breaking changes or removal in future versions.
1701
1703
1704
+
Create or update Documents. Before using this route, you should create a new collection resource using either a [server integration](https://appwrite.io/docs/server/databases#databasesCreateCollection) API or directly from your database console.
* Update all documents that match your queries, if no queries are submitted then all documents are updated. You can pass only specific fields to be updated.
1741
+
* **WARNING: Experimental Feature** - This endpoint is experimental and not yet officially supported. It may be subject to breaking changes or removal in future versions.
1742
+
1743
+
Update all documents that match your queries, if no queries are submitted then all documents are updated. You can pass only specific fields to be updated.
1736
1744
*
1737
1745
* @param {string} databaseId
1738
1746
* @param {string} collectionId
@@ -1770,7 +1778,9 @@ export class Databases {
1770
1778
);
1771
1779
}
1772
1780
/**
1773
-
* Bulk delete documents using queries, if no queries are passed then all documents are deleted.
1781
+
* **WARNING: Experimental Feature** - This endpoint is experimental and not yet officially supported. It may be subject to breaking changes or removal in future versions.
1782
+
1783
+
Bulk delete documents using queries, if no queries are passed then all documents are deleted.
1774
1784
*
1775
1785
* @param {string} databaseId
1776
1786
* @param {string} collectionId
@@ -1840,6 +1850,53 @@ export class Databases {
1840
1850
payload,
1841
1851
);
1842
1852
}
1853
+
/**
1854
+
* **WARNING: Experimental Feature** - This endpoint is experimental and not yet officially supported. It may be subject to breaking changes or removal in future versions.
1855
+
1856
+
Create or update a Document. Before using this route, you should create a new collection resource using either a [server integration](https://appwrite.io/docs/server/databases#databasesCreateCollection) API or directly from your database console.
0 commit comments