| 1234567891011121314151617181920212223242526272829303132 |
- resources_list
- {
- "jsonrpc": "2.0",
- "result": {
- "resources": [
- {
- "description": "Subscribe to task creation events. Receives Task objects when new tasks are created and assigned to you.",
- "mimeType": "application/json",
- "name": "taskCreated",
- "uri": "graphql://subscription/taskCreated"
- },
- {
- "description": "Subscribe to task update events. Receives Task objects when tasks assigned to you are updated.",
- "mimeType": "application/json",
- "name": "taskUpdated",
- "uri": "graphql://subscription/taskUpdated"
- },
- {
- "description": "Subscribe to task deletion events. Receives Task objects when tasks assigned to you are deleted.",
- "mimeType": "application/json",
- "name": "taskDeleted",
- "uri": "graphql://subscription/taskDeleted"
- },
- {
- "description": "Subscribe to new message events. Receives Message objects when messages are sent to you.",
- "mimeType": "application/json",
- "name": "messageAdded",
- "uri": "graphql://subscription/messageAdded"
- }
- ]
- }
- }
|