-
Notifications
You must be signed in to change notification settings - Fork 37
Dev #193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dev #193
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
appwrite databases create-line-attribute \ | ||
--database-id <DATABASE_ID> \ | ||
--collection-id <COLLECTION_ID> \ | ||
--key '' \ | ||
--required false | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
appwrite databases create-point-attribute \ | ||
--database-id <DATABASE_ID> \ | ||
--collection-id <COLLECTION_ID> \ | ||
--key '' \ | ||
--required false | ||
abnegate marked this conversation as resolved.
Show resolved
Hide resolved
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
appwrite databases create-polygon-attribute \ | ||
--database-id <DATABASE_ID> \ | ||
--collection-id <COLLECTION_ID> \ | ||
--key '' \ | ||
--required false | ||
abnegate marked this conversation as resolved.
Show resolved
Hide resolved
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
appwrite databases update-line-attribute \ | ||
--database-id <DATABASE_ID> \ | ||
--collection-id <COLLECTION_ID> \ | ||
--key '' \ | ||
--required false | ||
abnegate marked this conversation as resolved.
Show resolved
Hide resolved
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
appwrite databases update-point-attribute \ | ||
--database-id <DATABASE_ID> \ | ||
--collection-id <COLLECTION_ID> \ | ||
--key '' \ | ||
--required false | ||
abnegate marked this conversation as resolved.
Show resolved
Hide resolved
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,5 @@ | ||||||||||||||||||||||
appwrite databases update-polygon-attribute \ | ||||||||||||||||||||||
--database-id <DATABASE_ID> \ | ||||||||||||||||||||||
--collection-id <COLLECTION_ID> \ | ||||||||||||||||||||||
--key '' \ | ||||||||||||||||||||||
--required false | ||||||||||||||||||||||
Comment on lines
+1
to
+5
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix placeholder: avoid empty --key ('') which yields an invalid command. Use an explicit placeholder to prevent copy-paste failures. appwrite databases update-polygon-attribute \
--database-id <DATABASE_ID> \
--collection-id <COLLECTION_ID> \
- --key '' \
+ --key <ATTRIBUTE_KEY> \
--required false 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,5 @@ | ||||||||||||||||||||||
appwrite tables-db create-line-column \ | ||||||||||||||||||||||
--database-id <DATABASE_ID> \ | ||||||||||||||||||||||
--table-id <TABLE_ID> \ | ||||||||||||||||||||||
--key '' \ | ||||||||||||||||||||||
--required false | ||||||||||||||||||||||
Comment on lines
+1
to
+5
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix example: avoid empty key placeholder Using appwrite tables-db create-line-column \
--database-id <DATABASE_ID> \
--table-id <TABLE_ID> \
- --key '' \
+ --key <KEY> \
--required false Consider adding an example 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
appwrite tables-db create-point-column \ | ||
--database-id <DATABASE_ID> \ | ||
--table-id <TABLE_ID> \ | ||
--key '' \ | ||
--required false |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
appwrite tables-db create-polygon-column \ | ||
--database-id <DATABASE_ID> \ | ||
--table-id <TABLE_ID> \ | ||
--key '' \ | ||
--required false | ||
abnegate marked this conversation as resolved.
Show resolved
Hide resolved
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
appwrite tables-db update-line-column \ | ||
--database-id <DATABASE_ID> \ | ||
--table-id <TABLE_ID> \ | ||
--key '' \ | ||
--required false |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
appwrite tables-db update-point-column \ | ||
--database-id <DATABASE_ID> \ | ||
--table-id <TABLE_ID> \ | ||
--key '' \ | ||
--required false |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
appwrite tables-db update-polygon-column \ | ||
--database-id <DATABASE_ID> \ | ||
--table-id <TABLE_ID> \ | ||
--key '' \ | ||
--required false | ||
abnegate marked this conversation as resolved.
Show resolved
Hide resolved
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix invalid example:
--key ''
is misleading/likely invalidUsers copy-pasting this will create an attribute with an empty key, which should be rejected. Show a concrete placeholder or example instead.
Apply this diff:
📝 Committable suggestion
🤖 Prompt for AI Agents