is_user_followed
Check if you are following a specific user on Qiita to manage your developer community connections and track your network relationships.
Instructions
指定されたユーザーをフォローしているかどうかを確認します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| userId | Yes | ユーザーID |
Input Schema (JSON Schema)
{
"properties": {
"userId": {
"description": "ユーザーID",
"type": "string"
}
},
"required": [
"userId"
],
"type": "object"
}