Monorepo for Tangled tangled.org
1

Configure Feed

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

core / lexicons / graph / getFollow.json
916 B 39 lines
1{ 2 "lexicon": 1, 3 "id": "sh.tangled.graph.getFollow", 4 "defs": { 5 "main": { 6 "type": "query", 7 "parameters": { 8 "type": "params", 9 "required": ["actor", "subject"], 10 "properties": { 11 "actor": { 12 "type": "string", 13 "format": "did", 14 "description": "DID of the potential follower." 15 }, 16 "subject": { 17 "type": "string", 18 "format": "did", 19 "description": "Followee DID to check." 20 } 21 } 22 }, 23 "output": { 24 "encoding": "application/json", 25 "schema": { 26 "type": "object", 27 "required": ["uri"], 28 "properties": { 29 "uri": { 30 "type": "string", 31 "format": "at-uri", 32 "description": "Uri of actor's follow record for subject." 33 } 34 } 35 } 36 } 37 } 38 } 39}