
This is how I am adding documents in my collection, but my function is failing to execute Is there something wrong in this approach?
for i in range(len(name_list)):
result = databases.create_document('64776905e1fxxxx', '64776913a740bxxxx', ID.unique(), data = {
'name': name_list[i],
'logo': logo_list[i],
'title': title_list[i],
'location': location_list[i]
},)

What's the error?

no error

its just failing


Can you try wrap your code with try catch
So the error will be send back?
Like this
https://discord.com/channels/564160730845151244/1113545780863701013/1113549759416897708

There's no info in the any of the logs
tabs?

nopw

when I use try catch

it returns

{"message":"list index out of range","success":false}

That's good
It means that one of the lists doesn't contain as many items as name_list
list.
Try to output the len
of each list. to be sure they all have the same length.

oh yes you are right, thanks, that was dumbπ
Recommended threads
- unexpected row_invalid_structure error
In images you can see both my code,error, column schema I do have timezone in table schema but still while creating a row i am receving row_invalid_structure e...
- Internal 500 Server Error
I don't have much information but I am unable to create anything on database, Auth users are creating but not able to fetch into database
- Data sending problem having
<#564161373148414012> πβsupport <#564161373148414012> have few problems in my project running on appwrite . Data is not sending to database .is any update or...
