Skip to content

blackcubeio/graphql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Blackcube Graphql

pipeline status coverage report

Pre-requisites

  • PHP 7.4+
    • Extension dom
    • Extension fileinfo
    • Extension intl
    • Extension json
    • Extension mbstring
  • Apache or NginX
  • Blackcube core

Pre-flight

Add blackcube graphql to the project

composer require "blackcube/graphql" 

Installation

Beware: Blackcube graphql can only be installed if Blackcube core is already set up

Inject Blackcube admin in application

// main configuration file
// ...
    'bootstrap' => [
        // ... boostrapped modules
        'blackcube', // blackcube core
        'gql', // blackcube graphql
    ],
    'modules' => [
        // ... other modules
        'blackcube' => [
            'class' => blackcube\core\Module::class,
        ],
        'gql' => [
            'class' => blackcube\graphql\Module::class,
        ],
    ],
// ...

Blackcube graphql is now ready, you can access it through https://host.domain/gql

Releases

No releases published

Packages

No packages published

Languages