appwrite/docs/examples/1.5.x/server-graphql/examples/messaging/update-topic.md

17 lines
270 B
Markdown
Raw Normal View History

2024-02-05 12:40:51 +00:00
mutation {
messagingUpdateTopic(
2024-02-24 11:34:42 +00:00
topicId: "<TOPIC_ID>",
name: "<NAME>",
subscribe: ["any"]
2024-02-05 12:40:51 +00:00
) {
_id
_createdAt
_updatedAt
name
2024-02-19 04:12:47 +00:00
emailTotal
smsTotal
pushTotal
subscribe
2024-02-05 12:40:51 +00:00
}
}