@@ -52,18 +52,18 @@ const renameFileWithId = %[1]cmutation RenameFileWithId($id: ID!, $name: String!
52
52
}%[1]c
53
53
54
54
type FilesClient interface {
55
- GetFileNameWithId(ctx context.Context, id string, header * http.Header) (*http.Response, error)
56
- RenameFileWithId(ctx context.Context, id string, name string, header * http.Header) (*http.Response, error)
55
+ GetFileNameWithId(ctx context.Context, id string, header http.Header) (*http.Response, error)
56
+ RenameFileWithId(ctx context.Context, id string, name string, header http.Header) (*http.Response, error)
57
57
}
58
58
59
- func (c *filesClient) GetFileNameWithId(ctx context.Context, id string, header * http.Header) (*http.Response, error) {
59
+ func (c *filesClient) GetFileNameWithId(ctx context.Context, id string, header http.Header) (*http.Response, error) {
60
60
params := make(map[string]interface{}, 1)
61
61
params["id"] = id
62
62
63
63
return c.ctrl.Execute(ctx, getFileNameWithId, params, header)
64
64
}
65
65
66
- func (c *filesClient) RenameFileWithId(ctx context.Context, id string, name string, header * http.Header) (*http.Response, error) {
66
+ func (c *filesClient) RenameFileWithId(ctx context.Context, id string, name string, header http.Header) (*http.Response, error) {
67
67
params := make(map[string]interface{}, 2)
68
68
params["id"] = id
69
69
params["name"] = name
@@ -158,10 +158,10 @@ const getAllFilmsProducers = %[1]cquery GetAllFilmsProducers {
158
158
}%[1]c
159
159
160
160
type FilmsClient interface {
161
- GetAllFilmsProducers(ctx context.Context, header * http.Header) (*http.Response, error)
161
+ GetAllFilmsProducers(ctx context.Context, header http.Header) (*http.Response, error)
162
162
}
163
163
164
- func (c *filmsClient) GetAllFilmsProducers(ctx context.Context, header * http.Header) (*http.Response, error) {
164
+ func (c *filmsClient) GetAllFilmsProducers(ctx context.Context, header http.Header) (*http.Response, error) {
165
165
params := make(map[string]interface{}, 0)
166
166
167
167
return c.ctrl.Execute(ctx, getAllFilmsProducers, params, header)
@@ -244,10 +244,10 @@ const getAllResults = %[1]cquery GetAllResults {
244
244
}%[1]c
245
245
246
246
type MathClient interface {
247
- GetAllResults(ctx context.Context, header * http.Header) (*http.Response, error)
247
+ GetAllResults(ctx context.Context, header http.Header) (*http.Response, error)
248
248
}
249
249
250
- func (c *mathClient) GetAllResults(ctx context.Context, header * http.Header) (*http.Response, error) {
250
+ func (c *mathClient) GetAllResults(ctx context.Context, header http.Header) (*http.Response, error) {
251
251
params := make(map[string]interface{}, 0)
252
252
253
253
return c.ctrl.Execute(ctx, getAllResults, params, header)
@@ -330,10 +330,10 @@ const getAllResults = %[1]cquery GetAllResults {
330
330
}%[1]c
331
331
332
332
type MathClient interface {
333
- GetAllResults(ctx context.Context, header * http.Header) (*http.Response, error)
333
+ GetAllResults(ctx context.Context, header http.Header) (*http.Response, error)
334
334
}
335
335
336
- func (c *mathClient) GetAllResults(ctx context.Context, header * http.Header) (*http.Response, error) {
336
+ func (c *mathClient) GetAllResults(ctx context.Context, header http.Header) (*http.Response, error) {
337
337
params := make(map[string]interface{}, 0)
338
338
339
339
return c.ctrl.Execute(ctx, getAllResults, params, header)
@@ -436,10 +436,10 @@ const getHeroWithId123ABC = %[1]cquery GetHeroWithId123ABC {
436
436
}%[1]c
437
437
438
438
type SpecificHeroClient interface {
439
- GetHeroWithId123ABC(ctx context.Context, header * http.Header) (*http.Response, error)
439
+ GetHeroWithId123ABC(ctx context.Context, header http.Header) (*http.Response, error)
440
440
}
441
441
442
- func (c *specificHeroClient) GetHeroWithId123ABC(ctx context.Context, header * http.Header) (*http.Response, error) {
442
+ func (c *specificHeroClient) GetHeroWithId123ABC(ctx context.Context, header http.Header) (*http.Response, error) {
443
443
params := make(map[string]interface{}, 0)
444
444
445
445
return c.ctrl.Execute(ctx, getHeroWithId123ABC, params, header)
@@ -526,10 +526,10 @@ const getDepartment = %[1]cquery getDepartment {
526
526
}%[1]c
527
527
528
528
type CompanyClient interface {
529
- GetDepartment(ctx context.Context, header * http.Header) (*http.Response, error)
529
+ GetDepartment(ctx context.Context, header http.Header) (*http.Response, error)
530
530
}
531
531
532
- func (c *companyClient) GetDepartment(ctx context.Context, header * http.Header) (*http.Response, error) {
532
+ func (c *companyClient) GetDepartment(ctx context.Context, header http.Header) (*http.Response, error) {
533
533
params := make(map[string]interface{}, 0)
534
534
535
535
return c.ctrl.Execute(ctx, getDepartment, params, header)
@@ -613,10 +613,10 @@ const getCapsulesByFullSelector = %[1]cquery GetCapsulesByFullSelector($order: S
613
613
}%[1]c
614
614
615
615
type CapsulesClient interface {
616
- GetCapsulesByFullSelector(ctx context.Context, order string, mission string, originalLaunch Date, id string, sort string, header * http.Header) (*http.Response, error)
616
+ GetCapsulesByFullSelector(ctx context.Context, order string, mission string, originalLaunch Date, id string, sort string, header http.Header) (*http.Response, error)
617
617
}
618
618
619
- func (c *capsulesClient) GetCapsulesByFullSelector(ctx context.Context, order string, mission string, originalLaunch Date, id string, sort string, header * http.Header) (*http.Response, error) {
619
+ func (c *capsulesClient) GetCapsulesByFullSelector(ctx context.Context, order string, mission string, originalLaunch Date, id string, sort string, header http.Header) (*http.Response, error) {
620
620
params := make(map[string]interface{}, 5)
621
621
params["order"] = order
622
622
params["mission"] = mission
@@ -708,10 +708,10 @@ const getCapsulesByPositions = %[1]cquery GetCapsulesByPositions($find: [[Positi
708
708
}%[1]c
709
709
710
710
type CapsulesClient interface {
711
- GetCapsulesByPositions(ctx context.Context, find [][]Position, limit [][]Limit, selector [][]string, header * http.Header) (*http.Response, error)
711
+ GetCapsulesByPositions(ctx context.Context, find [][]Position, limit [][]Limit, selector [][]string, header http.Header) (*http.Response, error)
712
712
}
713
713
714
- func (c *capsulesClient) GetCapsulesByPositions(ctx context.Context, find [][]Position, limit [][]Limit, selector [][]string, header * http.Header) (*http.Response, error) {
714
+ func (c *capsulesClient) GetCapsulesByPositions(ctx context.Context, find [][]Position, limit [][]Limit, selector [][]string, header http.Header) (*http.Response, error) {
715
715
params := make(map[string]interface{}, 3)
716
716
params["find"] = find
717
717
params["limit"] = limit
@@ -801,10 +801,10 @@ const getCapsulesByPositions = %[1]cquery GetCapsulesByPositions($find: [[[Posit
801
801
}%[1]c
802
802
803
803
type CapsulesClient interface {
804
- GetCapsulesByPositions(ctx context.Context, find [][][]Position, limit [][][]Limit, selector [][][]string, header * http.Header) (*http.Response, error)
804
+ GetCapsulesByPositions(ctx context.Context, find [][][]Position, limit [][][]Limit, selector [][][]string, header http.Header) (*http.Response, error)
805
805
}
806
806
807
- func (c *capsulesClient) GetCapsulesByPositions(ctx context.Context, find [][][]Position, limit [][][]Limit, selector [][][]string, header * http.Header) (*http.Response, error) {
807
+ func (c *capsulesClient) GetCapsulesByPositions(ctx context.Context, find [][][]Position, limit [][][]Limit, selector [][][]string, header http.Header) (*http.Response, error) {
808
808
params := make(map[string]interface{}, 3)
809
809
params["find"] = find
810
810
params["limit"] = limit
@@ -894,10 +894,10 @@ const getAllMoviesWhereActorsOfTheMovieActedIn = %[1]cquery GetAllMoviesWhereAct
894
894
}%[1]c
895
895
896
896
type MovieClient interface {
897
- GetAllMoviesWhereActorsOfTheMovieActedIn(ctx context.Context, title string, header * http.Header) (*http.Response, error)
897
+ GetAllMoviesWhereActorsOfTheMovieActedIn(ctx context.Context, title string, header http.Header) (*http.Response, error)
898
898
}
899
899
900
- func (c *movieClient) GetAllMoviesWhereActorsOfTheMovieActedIn(ctx context.Context, title string, header * http.Header) (*http.Response, error) {
900
+ func (c *movieClient) GetAllMoviesWhereActorsOfTheMovieActedIn(ctx context.Context, title string, header http.Header) (*http.Response, error) {
901
901
params := make(map[string]interface{}, 1)
902
902
params["title"] = title
903
903
@@ -995,10 +995,10 @@ fragment InformatoryRocketInfo on Rocket {
995
995
}%[1]c
996
996
997
997
type RocketClient interface {
998
- GetShortRocketInfo(ctx context.Context, header * http.Header) (*http.Response, error)
998
+ GetShortRocketInfo(ctx context.Context, header http.Header) (*http.Response, error)
999
999
}
1000
1000
1001
- func (c *rocketClient) GetShortRocketInfo(ctx context.Context, header * http.Header) (*http.Response, error) {
1001
+ func (c *rocketClient) GetShortRocketInfo(ctx context.Context, header http.Header) (*http.Response, error) {
1002
1002
params := make(map[string]interface{}, 0)
1003
1003
1004
1004
return c.ctrl.Execute(ctx, getShortRocketInfo, params, header)
@@ -1087,10 +1087,10 @@ const getCountriesAndContinents = %[1]cquery getCountriesAndContinents {
1087
1087
}%[1]c
1088
1088
1089
1089
type CountriesClient interface {
1090
- GetCountriesAndContinents(ctx context.Context, header * http.Header) (*http.Response, error)
1090
+ GetCountriesAndContinents(ctx context.Context, header http.Header) (*http.Response, error)
1091
1091
}
1092
1092
1093
- func (c *countriesClient) GetCountriesAndContinents(ctx context.Context, header * http.Header) (*http.Response, error) {
1093
+ func (c *countriesClient) GetCountriesAndContinents(ctx context.Context, header http.Header) (*http.Response, error) {
1094
1094
params := make(map[string]interface{}, 0)
1095
1095
1096
1096
return c.ctrl.Execute(ctx, getCountriesAndContinents, params, header)
@@ -1181,10 +1181,10 @@ const getCharacters = %[1]cquery getCharacters {
1181
1181
}%[1]c
1182
1182
1183
1183
type CharacterClient interface {
1184
- GetCharacters(ctx context.Context, header * http.Header) (*http.Response, error)
1184
+ GetCharacters(ctx context.Context, header http.Header) (*http.Response, error)
1185
1185
}
1186
1186
1187
- func (c *characterClient) GetCharacters(ctx context.Context, header * http.Header) (*http.Response, error) {
1187
+ func (c *characterClient) GetCharacters(ctx context.Context, header http.Header) (*http.Response, error) {
1188
1188
params := make(map[string]interface{}, 0)
1189
1189
1190
1190
return c.ctrl.Execute(ctx, getCharacters, params, header)
@@ -1272,10 +1272,10 @@ const getCharacters = %[1]cquery getCharacters {
1272
1272
}%[1]c
1273
1273
1274
1274
type CharacterClient interface {
1275
- GetCharacters(ctx context.Context, header * http.Header) (*http.Response, error)
1275
+ GetCharacters(ctx context.Context, header http.Header) (*http.Response, error)
1276
1276
}
1277
1277
1278
- func (c *characterClient) GetCharacters(ctx context.Context, header * http.Header) (*http.Response, error) {
1278
+ func (c *characterClient) GetCharacters(ctx context.Context, header http.Header) (*http.Response, error) {
1279
1279
params := make(map[string]interface{}, 0)
1280
1280
1281
1281
return c.ctrl.Execute(ctx, getCharacters, params, header)
@@ -1359,10 +1359,10 @@ const getCharactersId = %[1]cquery getCharactersId {
1359
1359
}%[1]c
1360
1360
1361
1361
type CharacterClient interface {
1362
- GetCharactersId(ctx context.Context, header * http.Header) (*http.Response, error)
1362
+ GetCharactersId(ctx context.Context, header http.Header) (*http.Response, error)
1363
1363
}
1364
1364
1365
- func (c *characterClient) GetCharactersId(ctx context.Context, header * http.Header) (*http.Response, error) {
1365
+ func (c *characterClient) GetCharactersId(ctx context.Context, header http.Header) (*http.Response, error) {
1366
1366
params := make(map[string]interface{}, 0)
1367
1367
1368
1368
return c.ctrl.Execute(ctx, getCharactersId, params, header)
@@ -1467,10 +1467,10 @@ const getCharacters = %[1]cquery getCharacters {
1467
1467
}%[1]c
1468
1468
1469
1469
type PlanetClient interface {
1470
- GetCharacters(ctx context.Context, header * http.Header) (*http.Response, error)
1470
+ GetCharacters(ctx context.Context, header http.Header) (*http.Response, error)
1471
1471
}
1472
1472
1473
- func (c *planetClient) GetCharacters(ctx context.Context, header * http.Header) (*http.Response, error) {
1473
+ func (c *planetClient) GetCharacters(ctx context.Context, header http.Header) (*http.Response, error) {
1474
1474
params := make(map[string]interface{}, 0)
1475
1475
1476
1476
return c.ctrl.Execute(ctx, getCharacters, params, header)
@@ -1555,10 +1555,10 @@ const getCharacters = %[1]cquery getCharacters {
1555
1555
}%[1]c
1556
1556
1557
1557
type CharacterClient interface {
1558
- GetCharacters(ctx context.Context, header * http.Header) (*http.Response, error)
1558
+ GetCharacters(ctx context.Context, header http.Header) (*http.Response, error)
1559
1559
}
1560
1560
1561
- func (c *characterClient) GetCharacters(ctx context.Context, header * http.Header) (*http.Response, error) {
1561
+ func (c *characterClient) GetCharacters(ctx context.Context, header http.Header) (*http.Response, error) {
1562
1562
params := make(map[string]interface{}, 0)
1563
1563
1564
1564
return c.ctrl.Execute(ctx, getCharacters, params, header)
@@ -1655,10 +1655,10 @@ fragment InformatoryRocketInfo on Rocket {
1655
1655
}%[1]c
1656
1656
1657
1657
type RocketClient interface {
1658
- GetShortRocketInfo(ctx context.Context, header * http.Header) (*http.Response, error)
1658
+ GetShortRocketInfo(ctx context.Context, header http.Header) (*http.Response, error)
1659
1659
}
1660
1660
1661
- func (c *rocketClient) GetShortRocketInfo(ctx context.Context, header * http.Header) (*http.Response, error) {
1661
+ func (c *rocketClient) GetShortRocketInfo(ctx context.Context, header http.Header) (*http.Response, error) {
1662
1662
params := make(map[string]interface{}, 0)
1663
1663
1664
1664
return c.ctrl.Execute(ctx, getShortRocketInfo, params, header)
@@ -1767,10 +1767,10 @@ const getRepositoryInformation = %[1]cquery getRepositoryInformation {
1767
1767
}%[1]c
1768
1768
1769
1769
type GitClient interface {
1770
- GetRepositoryInformation(ctx context.Context, header * http.Header) (*http.Response, error)
1770
+ GetRepositoryInformation(ctx context.Context, header http.Header) (*http.Response, error)
1771
1771
}
1772
1772
1773
- func (c *gitClient) GetRepositoryInformation(ctx context.Context, header * http.Header) (*http.Response, error) {
1773
+ func (c *gitClient) GetRepositoryInformation(ctx context.Context, header http.Header) (*http.Response, error) {
1774
1774
params := make(map[string]interface{}, 0)
1775
1775
1776
1776
return c.ctrl.Execute(ctx, getRepositoryInformation, params, header)
@@ -1848,10 +1848,10 @@ const getFileNameWithId = %[1]cquery GetFileNameWithId($id: ID!) {
1848
1848
}%[1]c
1849
1849
1850
1850
type CommentsClient interface {
1851
- GetFileNameWithId(ctx context.Context, id string, header * http.Header) (*http.Response, error)
1851
+ GetFileNameWithId(ctx context.Context, id string, header http.Header) (*http.Response, error)
1852
1852
}
1853
1853
1854
- func (c *commentsClient) GetFileNameWithId(ctx context.Context, id string, header * http.Header) (*http.Response, error) {
1854
+ func (c *commentsClient) GetFileNameWithId(ctx context.Context, id string, header http.Header) (*http.Response, error) {
1855
1855
params := make(map[string]interface{}, 1)
1856
1856
params["id"] = id
1857
1857
@@ -1940,10 +1940,10 @@ const getFileNameWithId = %[1]cquery GetFileNameWithId($id: ID!) {
1940
1940
}%[1]c
1941
1941
1942
1942
type FieldClient interface {
1943
- GetFileNameWithId(ctx context.Context, id string, header * http.Header) (*http.Response, error)
1943
+ GetFileNameWithId(ctx context.Context, id string, header http.Header) (*http.Response, error)
1944
1944
}
1945
1945
1946
- func (c *fieldClient) GetFileNameWithId(ctx context.Context, id string, header * http.Header) (*http.Response, error) {
1946
+ func (c *fieldClient) GetFileNameWithId(ctx context.Context, id string, header http.Header) (*http.Response, error) {
1947
1947
params := make(map[string]interface{}, 1)
1948
1948
params["id"] = id
1949
1949
0 commit comments