Skip to content
2 changes: 1 addition & 1 deletion packages/gdl-frontend/gql/QueryBookList.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const GET_BOOKS_QUERY = gql`
bookId
title
coverImage {
url
url: urlV2
}
language {
code
Expand Down
4 changes: 2 additions & 2 deletions packages/gdl-frontend/lib/offlineLibrary/OfflineLibrary.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ const OfflineBookFragment = gql`
seqNo
chapterId
content
imageUrls
imageUrls: imageUrlsV2
}
downloads {
epub
Expand All @@ -253,7 +253,7 @@ const OfflineBookFragment = gql`
isRTL
}
coverImage {
url
url: urlV2
}
publisher {
name
Expand Down
4 changes: 2 additions & 2 deletions packages/gdl-frontend/pages/books/_book.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const BOOK_QUERY = gql`
name
}
coverImage {
url
url: urlV2
}
publisher {
name
Expand Down Expand Up @@ -537,7 +537,7 @@ const SIMILAR_BOOKS_QUERY = gql`
code
}
coverImage {
url
url: urlV2
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions packages/gdl-frontend/pages/books/_read.js
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ const BOOK_QUERY = gql`
chapterId
}
coverImage {
url
url: urlV2
}
}
}
Expand All @@ -257,7 +257,7 @@ const CHAPTER_QUERY = gql`
seqNo
chapterId
content
imageUrls
imageUrls: imageUrlsV2
}
}
`;
Expand Down
2 changes: 1 addition & 1 deletion packages/gdl-frontend/pages/books/_translate.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const BOOK_QUERY = gql`
name
}
coverImage {
url
url: urlV2
}
}
translationLanguages(languageCode: $languageCode) {
Expand Down
2 changes: 1 addition & 1 deletion packages/gdl-frontend/pages/books/browse.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const BROWSE_BOOKS_QUERY = gql`
bookId
title
coverImage {
url
url: urlV2
}
language {
code
Expand Down
2 changes: 1 addition & 1 deletion packages/gdl-frontend/pages/books/translations.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const MY_TRANSLATION_QUERY = gql`
name
}
coverImage {
url
url: urlV2
}
language {
name
Expand Down
2 changes: 1 addition & 1 deletion packages/gdl-frontend/pages/favorites.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ const FAVORITES_QUERY = gql`
code
}
coverImage {
url
url: urlV2
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/gdl-frontend/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ const HOME_CONTENT_QUERY = gql`
bookId
title
coverImage {
url
url: urlV2
}
language {
code
Expand Down
2 changes: 1 addition & 1 deletion packages/gdl-frontend/pages/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ const SEARCH_QUERY = gql`
highlightDescription
readingLevel
coverImage {
url
url: urlV2
}
language {
code
Expand Down