how much size did you set up for accountId?
2200
too much HAHAHAH
actually every string field have this
I was thinking the same, but the autrhor in video did so, I've totally forget that I wanted to change this
is this really the root of the problem?
nope
I could not really see the root cause of the issue, but I believe the root cause is passing data on your collection, but the result is that it successfuly created the document
yeah thats weird
yes, it creates it succsessfylly
maybe I should just recreate a project
idk
nope dont do that
delete collection?
how about send a mimic data
const newUser = await databases.createDocument( appwriteConfig.databaseId, appwriteConfig.userCollectionId, ID.unique(), user )
const newUser = await databases.createDocument(
appwriteConfig.databaseId,
appwriteConfig.userCollectionId,
ID.unique(),
{
accountId: 'sample',
email: 'test@yahoo.com',
imageUrl: 'test.com',
name: 'test',
username: 'test'
}
)
so that we can validate if this is the root cause of problem
it appeared in database
I think the team will help you about this, you can post another support so that the team will see your issue
okay, thanks anyway
can't express how grateful I'm for your time and willingness for help
I want to help you but I have thesis to do.🥹
good luck with that!
Recommended threads
- Realtime for files() works almost well, ...
I have been trying to make use of realtime, today (14.03.26) I have pulled all the latest versions of docker images, and sdk available. Whats working: - Conn...
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...
- Relation Question
How do I create a relation from table y to an others x.$id. in my example I have a users table where I use Appwrites unique User IDs and I want other tables fo...