mirror of
https://github.com/appwrite/appwrite
synced 2026-05-17 22:18:51 +00:00
22 lines
395 B
Markdown
22 lines
395 B
Markdown
|
|
mutation {
|
||
|
|
databasesCreateEmailAttribute(
|
||
|
|
databaseId: "<DATABASE_ID>",
|
||
|
|
collectionId: "<COLLECTION_ID>",
|
||
|
|
key: "",
|
||
|
|
required: false,
|
||
|
|
default: "email@example.com",
|
||
|
|
array: false
|
||
|
|
) {
|
||
|
|
key
|
||
|
|
type
|
||
|
|
status
|
||
|
|
error
|
||
|
|
required
|
||
|
|
array
|
||
|
|
_createdAt
|
||
|
|
_updatedAt
|
||
|
|
format
|
||
|
|
default
|
||
|
|
}
|
||
|
|
}
|