@@ -198,9 +198,9 @@ discard block |
||
198 | 198 | $types = $types->merge($this->getPivotModelTypes($schema)); |
199 | 199 | } else { |
200 | 200 | $types->push(new Types\EntityType($this->registry, $schema)) |
201 | - ->push(new Types\EntityLookupType($this->registry, $schema)) |
|
202 | - ->push(new Types\CollectionFilterType($this->registry, $schema)) |
|
203 | - ->push(new Types\CollectionOrderByType($this->registry, $schema)); |
|
201 | + ->push(new Types\EntityLookupType($this->registry, $schema)) |
|
202 | + ->push(new Types\CollectionFilterType($this->registry, $schema)) |
|
203 | + ->push(new Types\CollectionOrderByType($this->registry, $schema)); |
|
204 | 204 | |
205 | 205 | if ($schema->isSearchable()) { |
206 | 206 | $types->push(new Types\CollectionSearchType($this->registry, $schema)); |
@@ -208,12 +208,12 @@ discard block |
||
208 | 208 | |
209 | 209 | if ($schema->isIndexable()) { |
210 | 210 | $types->push(new Types\EntityCollectionType($this->registry, $schema)) |
211 | - ->push(new Types\CollectionRootSearchType($this->registry, $schema)); |
|
211 | + ->push(new Types\CollectionRootSearchType($this->registry, $schema)); |
|
212 | 212 | } |
213 | 213 | |
214 | 214 | if ($schema->isMutable()) { |
215 | 215 | $types->push(new Types\CreateInputType($this->registry, $schema)) |
216 | - ->push(new Types\UpdateInputType($this->registry, $schema)); |
|
216 | + ->push(new Types\UpdateInputType($this->registry, $schema)); |
|
217 | 217 | } |
218 | 218 | } |
219 | 219 |