Updates across docs and blog for new terminology for DB + string#2863
Updates across docs and blog for new terminology for DB + string#2863atharvadeosthale wants to merge 2 commits intomainfrom
Conversation
Greptile SummaryThis PR performs a large-scale terminology update across 22 blog posts and 1 documentation page, renaming Appwrite Database concepts from NoSQL-style vocabulary (
Confidence Score: 5/5Safe to merge; all changes are documentation and blog content updates with no production runtime code affected The single finding is a P2 style concern in a third-party RxDB plugin call where the key name is dictated by an external API contract. All Appwrite SDK method calls, parameter names, env variable names, and prose are consistently and correctly updated across all 29 changed files. src/routes/blog/post/offline-first-journal/+page.markdoc line 242 deserves an inline clarifying comment; all other files are clean Important Files Changed
Reviews (1): Last reviewed commit: "more blogs" | Re-trigger Greptile |
| client, | ||
| databaseId: appwriteConfig.databaseId, | ||
| collectionId: appwriteConfig.collectionId, | ||
| collectionId: appwriteConfig.tableId, |
There was a problem hiding this comment.
Mixed old/new terminology in
replicateAppwrite() call
The key collectionId retains the old Appwrite terminology while its value now reads from appwriteConfig.tableId — a config field renamed earlier in the tutorial. The code is functionally correct because the RxDB Appwrite replication plugin still expects collectionId as its parameter key (third-party API contract), but the juxtaposition is confusing for readers: they may think the access path is wrong, or that they should define a collectionId key in their config instead of tableId.
A brief inline comment would resolve the ambiguity:
| collectionId: appwriteConfig.tableId, | |
| collectionId: appwriteConfig.tableId, // 'collectionId' is the parameter name required by the RxDB Appwrite plugin |
Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!
No description provided.