Basic Messages
Send and receive messages over DIDComm connection
Send a basic message to a connection
mutation MyMutation {
sendBasicMessage(
connectionId: "001fe530-3562-41d6-a631-3df9c7ae1f38"
content: "Hi Bob. I've sent you your updated credential offer. If you don't accept it within the next week, I'll have to withdraw the offer. Please let me know if you changed your mind. Thanks"
) {
id
content
timestamp
direction
}
}Broadcast a basic message to multiple connections
mutation MyMutation {
broadcastBasicMessage(
connectionIds: ["001fe530-3562-41d6-a631-3df9c7ae1f38", "01560d79-712a-42d5-91f6-8ded03c7e549"]
content: "An upgraded version of your credential is now available. See website for details."
) {
connectionIds
}
}View basic messages for a connection
Delete basic messages
Last updated