NEW GraphQL 4 Compatability (#72)

* Initial compat for graphql4
* Fix graphql config
This commit is contained in:
Aaron Carlino 2020-10-22 15:00:29 +13:00 committed by GitHub
parent fd800a3a79
commit 030208712a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 99 additions and 41 deletions

View File

@ -0,0 +1,59 @@
---
Name: frameworktestgraphql-legacy
After: '#graphqlconfig'
Except:
classexists: 'SilverStripe\GraphQL\Schema\Schema'
---
SilverStripe\Core\Injector\Injector:
SilverStripe\GraphQL\Manager.frameworktest:
class: SilverStripe\GraphQL\Manager
constructor:
identifier: frameworktest
SilverStripe\GraphQL\Controller.frameworktest:
class: SilverStripe\GraphQL\Controller
constructor:
manager: '%$SilverStripe\GraphQL\Manager.frameworktest'
SilverStripe\Control\Director:
rules:
'frameworktest/graphql':
Controller: '%$SilverStripe\GraphQL\Controller.frameworktest'
SilverStripe\GraphQL\Manager:
schemas:
frameworktest:
typeNames:
SilverStripe\FrameworkTest\Model\Company: Company
SilverStripe\FrameworkTest\Model\Employee: Employee
scaffolding:
types:
SilverStripe\FrameworkTest\Model\Company:
fields:
- ID
- Name
- Category
- Revenue
- CEO
operations:
read: true
update: true
create: true
delete: true
readOne: true
nestedQueries:
Employees: true
PastEmployees: true
SilverStripe\FrameworkTest\Model\Employee:
fields:
- ID
- Name
- Biography
- DateOfBirth
- Category
operations:
read: true
update: true
create: true
delete: true
readOne: true

View File

@ -1,59 +1,58 @@
--- ---
Name: frameworktestgraphql Name: frameworktestgraphql
After: '#graphqlconfig' After: '#graphqlconfig'
Only:
classexists: 'SilverStripe\GraphQL\Schema\Schema'
--- ---
SilverStripe\Core\Injector\Injector: SilverStripe\Core\Injector\Injector:
SilverStripe\GraphQL\Manager.frameworktest: SilverStripe\GraphQL\Schema\Schema.frameworktest:
class: SilverStripe\GraphQL\Manager class: SilverStripe\GraphQL\Schema\Schema
constructor: constructor:
identifier: frameworktest schemaKey: frameworktest
SilverStripe\GraphQL\Controller.frameworktest: SilverStripe\GraphQL\Controller.frameworktest:
class: SilverStripe\GraphQL\Controller class: SilverStripe\GraphQL\Controller
constructor: constructor:
manager: '%$SilverStripe\GraphQL\Manager.frameworktest' schema: frameworktest
SilverStripe\Control\Director: SilverStripe\Control\Director:
rules: rules:
'frameworktest/graphql': 'frameworktest/graphql':
Controller: '%$SilverStripe\GraphQL\Controller.frameworktest' Controller: '%$SilverStripe\GraphQL\Controller.frameworktest'
SilverStripe\GraphQL\Manager: SilverStripe\GraphQL\Schema\Schema:
schemas: schemas:
frameworktest: frameworktest:
typeNames: modelConfig:
SilverStripe\FrameworkTest\Model\Company: Company type_mapping:
SilverStripe\FrameworkTest\Model\Employee: Employee SilverStripe\FrameworkTest\Model\Company: Company
scaffolding: SilverStripe\FrameworkTest\Model\Employee: Employee
types: models:
SilverStripe\FrameworkTest\Model\Company: SilverStripe\FrameworkTest\Model\Company:
fields: fields:
- ID ID: true
- Name Name: true
- Category Category: true
- Revenue Revenue: true
- CEO CEO: true
operations: Employees: true
read: true PastEmployees: true
update: true operations:
create: true read: true
delete: true update: true
readOne: true create: true
nestedQueries: delete: true
Employees: true readOne: true
PastEmployees: true SilverStripe\FrameworkTest\Model\Employee:
SilverStripe\FrameworkTest\Model\Employee: fields:
fields: ID: true
- ID Name: true
- Name Biography: true
- Biography DateOfBirth: true
- DateOfBirth Category: true
- Category operations:
operations: read: true
read: true update: true
update: true create: true
create: true delete: true
delete: true readOne: true
readOne: true