Skip to content

Commit

Permalink
pull back note in both queries to fix cache issue
Browse files Browse the repository at this point in the history
  • Loading branch information
acoffman committed Oct 3, 2024
1 parent de08b87 commit 054973b
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 16 deletions.
54 changes: 38 additions & 16 deletions client/src/app/generated/civic.apollo.ts

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ fragment MolecularProfileDetailFields on MolecularProfile {
deprecated
deprecationReason
complexMolecularProfileDeprecationActivity {
user {
id
displayName
role
profileImagePath(size: 32)
}
createdAt
parsedNote {
...parsedCommentFragment
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ fragment MolecularProfileSummaryFields on MolecularProfile {
role
profileImagePath(size: 32)
}
parsedNote {
...parsedCommentFragment
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ fragment VariantDetailFields on VariantInterface {
deprecated
deprecationReason
deprecationActivity {
user {
id
displayName
role
profileImagePath(size: 32)
}
createdAt
parsedNote {
...parsedCommentFragment
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ fragment VariantSummaryFields on VariantInterface {
profileImagePath(size: 32)
}
createdAt
parsedNote {
...parsedCommentFragment
}
}
... on GeneVariant {
... GeneVariantSummaryFields
Expand Down

0 comments on commit 054973b

Please sign in to comment.