# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/mytfm6q
Go GraphQL 教程**
一般的 Web 開發都是使用 RESTful 風格進行 API 的開發,這種 RESTful 風格的 API 開發的一般流程是:需求分析 模型設計 編碼實現 路由設計: 參數操作:校驗、請求 響應:JSON 格式、狀態碼 一種資源一般都可以抽象出 4 類路由,比如投票接口: 獲取所有投票信息GET /v1/api/votes 獲取單個投票信息GET /v1/ap ⌘ Read more