Skip to content
This repository was archived by the owner on Sep 29, 2023. It is now read-only.

Commit f5d9e15

Browse files
committed
Merge branch 'feat-database-docs' into feat-remove-tasks
2 parents 95723a5 + 2654b2a commit f5d9e15

File tree

2 files changed

+127
-109
lines changed

2 files changed

+127
-109
lines changed

app/views/docs/database.phtml

+8-4
Original file line numberDiff line numberDiff line change
@@ -463,17 +463,21 @@ func main() {
463463
</tr>
464464
</tbody>
465465
</table>
466-
<h3>Pagination</h3>
467466

467+
<h3><a href="/docs/database#pagination" id="pagination">Pagination</a></h3>
468468
<p>Appwrite has full support for pagination to better optimize and scale up your applications built on Appwrite. Detailed documentation on pagination and how to implement it can be found on the <a href="/docs/pagination">pagination guide.</a></p>
469469

470470
<h2><a href="/docs/database#known-limitations" id="known-limitations">Known Limitations</a></h2>
471+
471472
<h3>Relationships</h3>
472-
<p>tbd</p>
473+
<p>This Database doesn't allow any relationships out of the box yet. Nontheless you can achieve relationships using Indexes und Query Filters.</p>
474+
<p>For example if your <b>Author</b> collection has a <span class="tag">String[]</span> attribute and it contains multiple ID's from a <b>Blog</b> collection. You can easily query all the blog posts with a <span class="tag">Query.equal('blogpost-1', 'blogpost-2', ...)</span> once you have fetched the user.</p>
475+
473476
<h3>OR query on multiple attributes</h3>
474-
<p>tbd</p>
477+
<p>As of right now, an OR condition between multiple Queries is not supported yet.</p>
478+
475479
<h3>Array contains query</h3>
476-
<p>tbd</p>
480+
<p>Due to a limitation from MariaDB, we don't support a Contains query yet.</p>
477481

478482
<h2><a href="/docs/database#benchmarks" id="benchmarks">Benchmarks</a></h2>
479483
<p>tbd</p>

0 commit comments

Comments
 (0)