You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
https://github.com/helix-editor/helix/issues/290#issuecomment-1303710666 (from web UI)
Essentially handle permalinks to issue comments. 1303710666 is the databaseId, retrievable from the GraphQL API:
query {
repository(owner:"helix-editor", name:"helix") {
issue(number: 290) {
comments(after: "Y3Vyc29yOnYyOpHOTAOjmg==", first:1) { # the after string is a cursor; irrelavant to this querynodes {
databaseIdbody
}
}
}
}
}
Response:
{
"data": {
"repository": {
"issue": {
"comments": {
"nodes": [
{
"databaseId": 1303710666,
"body": "I think we're missing the fact that most process crashes aren't due to internal panic but external factors, ie unexpected system shutdown, out-of-memory, some idiot forgetting his laptop is set to automatically log out after an hour of inactivity.\r\n\r\nSo while a panic handler is great, a swap file or operation journal is vital feature."
}
]
}
}
}
}
}
The text was updated successfully, but these errors were encountered:
Retrievable from the REST notifications API from the
latest_comment_url
key:https://api.github.com/repos/helix-editor/helix/issues/comments/1303710666
(from API,latest_comment_url
)https://github.com/helix-editor/helix/issues/290#issuecomment-1303710666
(from web UI)Essentially handle permalinks to issue comments.
1303710666
is thedatabaseId
, retrievable from the GraphQL API:Response:
The text was updated successfully, but these errors were encountered: