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
{{ message }}
This repository was archived by the owner on Jun 21, 2023. It is now read-only.
At the moment pull request comments are only hidden inside the extension when the code near to them hasn't been changed (they're not marked as Outdated on github.com). The option to Resolve conversation has recently been added to github.com. We should continue showing conversations until they have been marked as resolved.
How it looks on dotcom
Here is a comment on the github.com conversation view that is marked as Outdated but that is still visible because it hasn't been resolved.
Here is a comment that is visible on the diff view that isn't Outdated, but that has been resolved.
Required APIs
Unfortunately the GraphQL schema that exposes the resolved/unresolved state of comments is under preview.
{
"isResolved": true,
"resolvedBy": {
"name": "Jamie Cansdale"
},
"comments": {
"nodes": [
{
"path": "src/GitHub.App/Services/RepositoryCloneService.cs",
"bodyText": "Maybe we should move the log.Error(...) to above DeleteDirectory in case it also throws?"
}
]
}
}
The text was updated successfully, but these errors were encountered:
At the moment pull request comments are only hidden inside the extension when the code near to them hasn't been changed (they're not marked as
Outdated
on github.com). The option toResolve conversation
has recently been added to github.com. We should continue showing conversations until they have been marked as resolved.How it looks on dotcom
Here is a comment on the github.com conversation view that is marked as
Outdated
but that is still visible because it hasn't been resolved.Here is a comment that is visible on the diff view that isn't
Outdated
, but that has been resolved.Required APIs
Unfortunately the GraphQL schema that exposes the resolved/unresolved state of comments is under preview.
In order to use use these preview schema together, the API needs to be accessed using the following header:
This isn't supported by GitHub's API explorer but is supported by the GraphiQL app.
You will need to use a GraphQL endpoint of:
Here is a sample query:
Here is a resolved comment thread:
The text was updated successfully, but these errors were encountered: