Skip to content

Commit

Permalink
fix: add request for new ID field on userAchievementProgress
Browse files Browse the repository at this point in the history
  • Loading branch information
emuvente committed Sep 27, 2024
1 parent 5c68d95 commit c16b6c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/graphql/query/lenderPublicProfile.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ query LenderPublicProfile ($publicId: String!) {
}
}
userAchievementProgress(publicId: $publicId) {
id
achievementProgress {

Check warning on line 31 in src/graphql/query/lenderPublicProfile.graphql

View workflow job for this annotation

GitHub Actions / build

The field UserAchievements.achievementProgress is deprecated. Use tieredLendingAchievements and lendingAchievements endpoints instead
achievementId
status
Expand Down
1 change: 1 addition & 0 deletions src/graphql/query/userAchievementsProgress.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ query userAchievementProgress(
$userId: String!
) {
userAchievementProgress(userId: $userId) {
id
achievementProgress {

Check warning on line 7 in src/graphql/query/userAchievementsProgress.graphql

View workflow job for this annotation

GitHub Actions / build

The field UserAchievements.achievementProgress is deprecated. Use tieredLendingAchievements and lendingAchievements endpoints instead
achievementId
status
Expand Down

0 comments on commit c16b6c6

Please sign in to comment.