-
Notifications
You must be signed in to change notification settings - Fork 67
Closed
Labels
origin/escalationOriginated from an escalationOriginated from an escalationtype/feature-requestRequested new feature or enhancementRequested new feature or enhancement
Description
Github documentation has a last updated field that can be queried. In current implementation this is not possible even though we stated that pull request can be queried with updated at field.
graphql query:
query {
search(
query: "repo:grafana/grafana is:pr updated:2025-09-04",
type: ISSUE,
first: 10
) {
issueCount
edges {
node {
... on PullRequest {
title
url
createdAt
updatedAt
author {
login
}
repository {
nameWithOwner
}
}
}
}
}
}Rest API:
GET https://api.github.com/search/issues?q=repo:grafana/grafana+is:pr+updated:2025-09-04&per_page=10Metadata
Metadata
Assignees
Labels
origin/escalationOriginated from an escalationOriginated from an escalationtype/feature-requestRequested new feature or enhancementRequested new feature or enhancement
Type
Projects
Status
Complete