appBskyGraphFollow top-level constant
app.bsky.graph.follow
Implementation
const appBskyGraphFollow = <String, dynamic>{
"lexicon": 1,
"id": "app.bsky.graph.follow",
"defs": {
"main": {
"type": "record",
"description":
"Record declaring a social 'follow' relationship of another account. Duplicate follows will be ignored by the AppView.",
"key": "tid",
"record": {
"type": "object",
"required": ["subject", "createdAt"],
"properties": {
"subject": {"type": "string", "format": "did"},
"createdAt": {"type": "string", "format": "datetime"}
}
}
}
}
};