frowhy / gql-nova-app

A Nova application built by GraphQL

Home Page:https://github.com/frowhy/gql-nuxt-app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nova

A Nova application built by GraphQL

Setup

# pull submodule
$ git submodule init
$ git submodule update

# install dependencies
$ composer install

# install Nova's service provider and public assets
$ php artisan nova:install
$ php artisan migrate

# generate jwt secret
$ php artisan jwt:secret

# serve with hot reload at localhost:8000
$ php artisan serve

Register GraphQL

// Register Schema
GraphQL::addSchema('default', [
    'query'    => [
        'users' => 'App\GraphQL\Query\UsersQuery',
    ],
    'mutation' => [
        'signIn'   => 'App\GraphQL\Mutation\SignInMutation',
        'authTest' => 'App\GraphQL\Mutation\AuthTestMutation',
    ],
]);
// Register Types
GraphQL::addTypes([
                      'App\GraphQL\Type\UserType',
                      'App\GraphQL\Type\AuthTestType',
                      'App\GraphQL\Type\AccessTokenType',
                  ]);

About

A Nova application built by GraphQL

https://github.com/frowhy/gql-nuxt-app


Languages

Language:PHP 97.2%Language:HTML 2.3%Language:Vue 0.5%