fix: add updated_at to graphql query (#5611)

This commit is contained in:
senda_y
2021-07-20 15:59:08 +09:00
committed by GitHub
parent 5ae3e820b0
commit 89895508b2
22 changed files with 214 additions and 212 deletions

View File

@ -66,6 +66,7 @@ type GraphQLPullRequest = {
state: string;
title: string;
mergedAt: string | null;
updatedAt: string | null;
labels: { nodes: { name: string }[] };
repository: {
id: string;

View File

@ -50,6 +50,7 @@ export const pullRequest = gql`
state
title
merged_at: mergedAt
updated_at: updatedAt
repository {
...RepositoryParts
}