https://github.com/mathsgod/graphqlite-test
https://github.com/mathsgod/graphqlite-test
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/mathsgod/graphqlite-test
- Owner: mathsgod
- Created: 2025-03-13T06:59:08.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-13T07:17:57.000Z (over 1 year ago)
- Last Synced: 2025-03-13T08:19:42.816Z (over 1 year ago)
- Language: PHP
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Installation
```
composer install
```
### Run the application with dev mode
```
php devmode.php
```
```
Array
(
[errors] => Array
(
[0] => Array
(
[message] => Cannot query field "test" on type "Query".
[locations] => Array
(
[0] => Array
(
[line] => 1
[column] => 3
)
)
[extensions] => Array
(
[file] => C:\Users\maths\project\graphqlite-test\vendor\webonyx\graphql-php\src\Validator\Rules\FieldsOnCorrectType.php
[line] => 43
)
)
)
)
```
### Run the application with prod mode
```
php prodmode.php
```
```
Array
(
[data] => Array
(
[test] => Hello, World!
)
)
```