File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 8
8
$country: Country!,
9
9
$language: Language!,
10
10
$first: Int!,
11
- $format: ImageFormat,
11
+ $formatPoster: ImageFormat,
12
+ $formatOfferIcon: ImageFormat,
12
13
$profile: PosterProfile,
13
14
$backdropProfile: BackdropProfile,
14
15
$filter: OfferFilter!,
46
47
imdbId
47
48
__typename
48
49
}
49
- posterUrl(profile: $profile, format: $format )
50
- backdrops(profile: $backdropProfile, format: $format ) {
50
+ posterUrl(profile: $profile, format: $formatPoster )
51
+ backdrops(profile: $backdropProfile, format: $formatPoster ) {
51
52
backdropUrl
52
53
__typename
53
54
}
65
66
packageId
66
67
clearName
67
68
technicalName
68
- icon(profile: S100)
69
+ icon(profile: S100, format: $formatOfferIcon )
69
70
__typename
70
71
}
71
72
id
@@ -95,7 +96,8 @@ def test_prepare_search_request(
95
96
"searchTitlesFilter" : {"searchQuery" : title },
96
97
"language" : language ,
97
98
"country" : country .upper (),
98
- "format" : "JPG" ,
99
+ "formatPoster" : "JPG" ,
100
+ "formatOfferIcon" : "PNG" ,
99
101
"profile" : "S718" ,
100
102
"backdropProfile" : "S1920" ,
101
103
"filter" : {"bestOnly" : best_only },
You can’t perform that action at this time.
0 commit comments