Merge pull request #88 from creative-commoners/pulls/4/g4-config

FIX Unindent models config
This commit is contained in:
Ingo Schommer 2021-02-26 10:10:45 +13:00 committed by GitHub
commit c91459f6be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 29 additions and 29 deletions

View File

@ -28,32 +28,32 @@ SilverStripe\GraphQL\Schema\Schema:
type_mapping: type_mapping:
SilverStripe\FrameworkTest\Model\Company: Company SilverStripe\FrameworkTest\Model\Company: Company
SilverStripe\FrameworkTest\Model\Employee: Employee SilverStripe\FrameworkTest\Model\Employee: Employee
models: models:
SilverStripe\FrameworkTest\Model\Company: SilverStripe\FrameworkTest\Model\Company:
fields: fields:
ID: true ID: true
Name: true Name: true
Category: true Category: true
Revenue: true Revenue: true
CEO: true CEO: true
Employees: true Employees: true
PastEmployees: true PastEmployees: true
operations: operations:
read: true read: true
update: true update: true
create: true create: true
delete: true delete: true
readOne: true readOne: true
SilverStripe\FrameworkTest\Model\Employee: SilverStripe\FrameworkTest\Model\Employee:
fields: fields:
ID: true ID: true
Name: true Name: true
Biography: true Biography: true
DateOfBirth: true DateOfBirth: true
Category: true Category: true
operations: operations:
read: true read: true
update: true update: true
create: true create: true
delete: true delete: true
readOne: true readOne: true