@@ -198,8 +198,8 @@ 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)); |
|
201 | + ->push(new Types\EntityLookupType($this->registry, $schema)) |
|
202 | + ->push(new Types\CollectionFilterType($this->registry, $schema)); |
|
203 | 203 | |
204 | 204 | if ($schema->isSortable()) { |
205 | 205 | $types->push(new types\CollectionOrderByType($this->registry, $schema)); |
@@ -211,12 +211,12 @@ discard block |
||
211 | 211 | |
212 | 212 | if ($schema->isIndexable()) { |
213 | 213 | $types->push(new Types\EntityCollectionType($this->registry, $schema)) |
214 | - ->push(new Types\CollectionRootSearchType($this->registry, $schema)); |
|
214 | + ->push(new Types\CollectionRootSearchType($this->registry, $schema)); |
|
215 | 215 | } |
216 | 216 | |
217 | 217 | if ($schema->isMutable()) { |
218 | 218 | $types->push(new Types\CreateInputType($this->registry, $schema)) |
219 | - ->push(new Types\UpdateInputType($this->registry, $schema)); |
|
219 | + ->push(new Types\UpdateInputType($this->registry, $schema)); |
|
220 | 220 | } |
221 | 221 | } |
222 | 222 |