mirror of
https://github.com/silverstripe/silverstripe-frameworktest
synced 2024-10-22 11:06:02 +02:00
NEW GraphQL 4 Compatability (#72)
* Initial compat for graphql4 * Fix graphql config
This commit is contained in:
parent
fd800a3a79
commit
030208712a
59
_config/graphql-legacy.yml
Normal file
59
_config/graphql-legacy.yml
Normal 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
|
@ -1,59 +1,58 @@
|
||||
---
|
||||
Name: frameworktestgraphql
|
||||
After: '#graphqlconfig'
|
||||
Only:
|
||||
classexists: 'SilverStripe\GraphQL\Schema\Schema'
|
||||
---
|
||||
|
||||
SilverStripe\Core\Injector\Injector:
|
||||
SilverStripe\GraphQL\Manager.frameworktest:
|
||||
class: SilverStripe\GraphQL\Manager
|
||||
SilverStripe\GraphQL\Schema\Schema.frameworktest:
|
||||
class: SilverStripe\GraphQL\Schema\Schema
|
||||
constructor:
|
||||
identifier: frameworktest
|
||||
schemaKey: frameworktest
|
||||
SilverStripe\GraphQL\Controller.frameworktest:
|
||||
class: SilverStripe\GraphQL\Controller
|
||||
constructor:
|
||||
manager: '%$SilverStripe\GraphQL\Manager.frameworktest'
|
||||
|
||||
|
||||
schema: frameworktest
|
||||
|
||||
SilverStripe\Control\Director:
|
||||
rules:
|
||||
'frameworktest/graphql':
|
||||
Controller: '%$SilverStripe\GraphQL\Controller.frameworktest'
|
||||
|
||||
SilverStripe\GraphQL\Manager:
|
||||
SilverStripe\GraphQL\Schema\Schema:
|
||||
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
|
||||
modelConfig:
|
||||
type_mapping:
|
||||
SilverStripe\FrameworkTest\Model\Company: Company
|
||||
SilverStripe\FrameworkTest\Model\Employee: Employee
|
||||
models:
|
||||
SilverStripe\FrameworkTest\Model\Company:
|
||||
fields:
|
||||
ID: true
|
||||
Name: true
|
||||
Category: true
|
||||
Revenue: true
|
||||
CEO: true
|
||||
Employees: true
|
||||
PastEmployees: true
|
||||
operations:
|
||||
read: true
|
||||
update: true
|
||||
create: true
|
||||
delete: true
|
||||
readOne: true
|
||||
SilverStripe\FrameworkTest\Model\Employee:
|
||||
fields:
|
||||
ID: true
|
||||
Name: true
|
||||
Biography: true
|
||||
DateOfBirth: true
|
||||
Category: true
|
||||
operations:
|
||||
read: true
|
||||
update: true
|
||||
create: true
|
||||
delete: true
|
||||
readOne: true
|
||||
|
Loading…
Reference in New Issue
Block a user