Issue Followers

The IssueFollower table in the Repo package is designed to manage the relationships between users and the issues they are tracking within a repository. Each record in the table associates a specific user with an issue, indicating that the user is following that particular issue for updates or notifications. The table typically includes columns such as follower_id, which references the user, issue_id, which corresponds to the issue being followed, and created_at, which records the timestamp of when the user started following the issue. This structure allows for efficient querying, enabling users to easily access issues they are interested in and facilitating better collaboration and communication within the development workflow.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
Path Params
string
required
Body Params
int32

The IssueFollowerId field is an integer data type that serves as the unique identifier for each record in the IssueFollower table. This identity field automatically increments with each new entry, ensuring that each follower associated with an issue can be distinctly identified. It is used as the primary key for the table, enabling efficient indexing and retrieval of records related to user followership on specific issues.

int32

FollowerId (int): This field represents the unique identifier for each follower associated with a particular issue in the IssueFollower table. It serves as a foreign key linking to the user or entity that is following the issue, enabling tracking of follower relationships and interactions.

int32

IssueId: An integer that uniquely identifies a specific issue within the IssueFollower table. This field serves as a foreign key linking to the corresponding issue in the Issues table, ensuring referential integrity and enabling the tracking of followers associated with each issue.

Headers
string
enum
Defaults to application/json;odata.metadata=minimal;odata.streaming=true

Generated from available request content types

Response
200

OK

Language
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here!