This repository was archived by the owner on Oct 19, 2024. It is now read-only.
File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 37
37
sudo apt-get install ruby-dev
38
38
sudo gem install bundler --force
39
39
sudo gem update --system
40
+ sudo bundle update --bundler
40
41
sudo bundle install --gemfile docs/Gemfile --path vendor/bundle
41
42
- name : Build microsite from last release
42
43
run : |
Original file line number Diff line number Diff line change @@ -194,11 +194,11 @@ typeToDec _ _ _ (GQL.InputObjectTypeDefinition _ name _ fields) =
194
194
ginputTypeToType (GQL. TypeNonNull (GQL. NonNullTypeNamed a)) =
195
195
[t | $(typeToPrimType a) |]
196
196
ginputTypeToType (GQL. TypeNonNull (GQL. NonNullTypeList a)) =
197
- [t | 'ListRef $(ginputTypeToType a) |]
197
+ [t | 'TList $(ginputTypeToType a) |]
198
198
ginputTypeToType (GQL. TypeNamed a) =
199
- [t | 'OptionalRef $(typeToPrimType a) |]
199
+ [t | 'TOption $(typeToPrimType a) |]
200
200
ginputTypeToType (GQL. TypeList a) =
201
- [t | 'OptionalRef ('ListRef $(ginputTypeToType a)) |]
201
+ [t | 'TOption ('TList $(ginputTypeToType a)) |]
202
202
typeToPrimType :: GQL. Name -> Q Type
203
203
typeToPrimType " Int" = [t |'TPrimitive Integer|]
204
204
typeToPrimType " Float" = [t |'TPrimitive Double|]
You can’t perform that action at this time.
0 commit comments