[SOLVED] Bug Report: Cannot deploy collections in appwrite.json with Int Attributes
- 0
- Databases
- Cloud
Hi. I'm creating a collection via appwrite cli from appwrite.json but it's returning "✗ Error Invalid min param: Value must be a valid integer" and "✗ Error Invalid max param: Value must be a valid integer" for min/max fields that have been set to { "key": "createdAt", "type": "integer", "status": "available", "required": true, "array": false, "min": -9223372036854776000, "max": 9223372036854776000, "default": null } It's from this repo https://github.com/Meldiron/almost-cookie-store and article https://dev.to/appwrite/start-selling-online-using-appwrite-and-stripe-3l04 but the instructions and repo are deprecated, but I'm trying to get it to work as a demo to test out stripe integration, as there don't seem to be any others available.
Ok, this seems to be the same error as https://github.com/appwrite/appwrite/issues/2894 which was reported Mar 4, 2022 and still seems unfixed. Is there a solution?
I've added a comment to the github bug report as well.
Should the values not be -9223372036854775808 and 9223372036854775808? As that is the max integer value?
The bug you’ve linked was about the min/max parameters being generated incorrectly, not about these incorrect values failing deployment (which is intended behaviour). As @Kenny said, replace the min and max parameters with the numbers he gave.
I'll try that, thanks.
@ideclon Don't shoot the messenger. The bug I linked literally says "Cannot deploy collections in appwrite.json with Int Attributes" and is related to the issue, as multiple others in the bug report have the same problem. I'm just trying to get clarity on what the issue is, as Kenny clarified.
That is correct - the user who opened the Issue did indeed think that the bug was in the import process. However, as I explained above, the bug was actually in the export process - so though the bug has been fixed, it didn't help you because the export was before that.
The problem was resolved from my POV, so works for me. It was the closest I could find to the issue, and was pretty much the issue as I experienced it. In any event, deployment seems unreliable anyway. Tried multiple times now and it just comes back ✗ Error Attribute deletion did not finish for too long. (so deleted collection manually to retry as a test) or hangs on a 500 error. I guess it's early days for the cloud so will take some time to settle down.
Systems says all ok https://status.appwrite.online/ but get ✗ Error Server Error now.
Whatever I guess, it's a different issues, so please close this or delete it. Thanks.
Could you please create a new post here for that?
[SOLVED] Bug Report: Cannot deploy collections in appwrite.json with Int Attributes
Recommended threads
- Type Mismatch in AppwriteException
There is a discrepancy in the TypeScript type definitions for AppwriteException. The response property is defined as a string in the type definitions, but in pr...
- [SOLVED] OAuth With Google & Flutter
Hi all, I'm trying to sign in with google and it all goes swimmingly until the call back. I get a new user created on the appwrite dashboard however the flutte...
- What Query's are valid for GetDocument?
Documentation shows that Queries are valid here, but doesn't explain which queries are valid. At first I presumed this to be a bug, but before creating a githu...