This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / lexicons / temp / notification / getUnreadCount.json
526 B 22 lines
1{ 2 "lexicon": 1, 3 "id": "org.tangled.temp.notification.getUnreadCount", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Get the total number of unread notifications for the authenticated user. Used to drive the bell badge.", 8 "output": { 9 "encoding": "application/json", 10 "schema": { 11 "type": "object", 12 "required": ["count"], 13 "properties": { 14 "count": { 15 "type": "integer" 16 } 17 } 18 } 19 } 20 } 21 } 22}