#[SOLVED] doesn't get the attribute even when i delete and remake it

44 messages · Page 1 of 1 (latest)

onyx furnace
#

And one of the attribute stays on deleting...

wary beacon
#

whoops, didn't see the first image lol

rocky vigil
#

Appwrite cloud, right?

#

What's the SDK you're using?

#

Respect the deleting attribute, you will need to wait a while

onyx furnace
onyx furnace
#

I do it now through another step to get the id from the one who send the notification

#

so that problem is solved for now

#

only the deleting take a long time

rocky vigil
#

Also, if the deleting attribute is still stuck after some hours, tell me and send your project ID so the team takes a look into it

onyx furnace
#

Now i created another attribute and its still processing. The deleting attribute is now deleted

#

but the processing is stuck now

rocky vigil
#

Hmmm weird. Seems a database is a bit busy so the attribute creation is slow...

onyx furnace
#

yeah i guess so

rocky vigil
#

Does refreshing the page works?

#

Or it's still processing even after that?

onyx furnace
#

Nop also not if i re login

#

i can look if this one is already set as attribute, but i think not

#

nop now it says Invalid document structure: Unknown attribute: "readed"

#

65a321d6b97507a5464a

this is my project ID

#

now it have no processing , but stil the error: Invalid document structure: Unknown attribute: "readed"

#

it seems its really slow

#
export async function createNotification(
  type: string,
  user: string,
  message: string,
  from: string,
  readed: boolean,
) {
  try {
    const createNotification = await databases.createDocument(
      appwriteConfig.databaseId,
      appwriteConfig.NotificationCollection,
      ID.unique(),
      {
        type: type,
        user: user,
        message: message,
        from: from,
        readed: readed
      }
    )

    if(!createNotification) throw Error;

    return createNotification;
  } catch (error) {
    console.log(error)
  }

}

This is the api part

#

i think i give up for today.. Still not working lol

fresh latch
#

I am experiencing a similar issue. AppwriteException: Invalid document structure: Unknown attribute: on a string array. Both from my app and in the cloud database dashboard. I get the error whether I add array of values or try to create the item with empty array. Also when trying to delete an array attribute added today it stays stuck on 'deleting' status.

onyx furnace
#

I think there is some bug/error on the appwrite. So i leave it for now. Hope it works tommorow again

#

Goodnight peeps and hope someone can fix it soon

onyx furnace
#

Hallo people is there an update for this?

onyx furnace
#

its fixed for now

rocky vigil
#

Yesterday there was some issue with the cloud infrastructure that are now solved

onyx furnace
#

Thanks for the update mate

rocky vigil
#

[SOLVED] doesn't get the attribute even when i delete and remake it