BugFollowers
Get list of followers for the bug.
Select
- BugId is required to retrieve Bug Followers.
SELECT * FROM BugFollowers WHERE BugId = '123456000000042110'
Insert
To add a Bug Follower specify the BugId and Follower fields.
INSERT INTO BugFollowers (BugId, BugFollowers) VALUES ('123456000000042110', '12345649448')
Delete
Bug Followers can be deleted by providing the Id and issuing a DELETE statement.
DELETE FROM BugFollowers WHERE BugId = '123456000000042110' AND FollowerId = '12345649448'
Columns
Name | Type | ReadOnly | Description |
BugId [KEY] | String | False |
Bug Id. |
FollowerId | String | False |
Bug Follower Id. |
FollowerName | String | False |
Bug Follower Name. |
BugFollowers | String | False |
Bug Followers. |