Skip to content

Commit 1a8dd39

Browse files
authored
Add "no framework" example to examples folder (#668)
Having an example as actual code rather than as out-of-context snippets inside a text file means that we can run the code, and ensure that it actually works.
1 parent d75d12a commit 1a8dd39

File tree

6 files changed

+127
-0
lines changed

6 files changed

+127
-0
lines changed

.github/workflows/continuous_integration.yml

+30
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,33 @@ jobs:
8989
fail_ci_if_error: false # optional (default = false) - Need CODECOV_TOKEN
9090
# Do not upload in forks, and only on php8.3, latest deps
9191
if: ${{ github.repository == 'thecodingmachine/graphqlite' && matrix.php-version == '8.3' && matrix.install-args == '' }}
92+
93+
examples:
94+
name: Check Examples
95+
runs-on: ubuntu-latest
96+
strategy:
97+
matrix:
98+
example: ['no-framework']
99+
fail-fast: false
100+
steps:
101+
- name: "Checkout"
102+
uses: "actions/checkout@v4"
103+
- name: "Install PHP with extensions"
104+
uses: "shivammathur/setup-php@v2"
105+
with:
106+
php-version: "8.2"
107+
tools: composer:v2
108+
- name: "Install dependencies with composer"
109+
working-directory: "examples/${{ matrix.example }}"
110+
run: "composer --version && composer install --no-interaction --no-progress --prefer-dist"
111+
- name: "Run example ${{ matrix.example }}"
112+
working-directory: "examples/${{ matrix.example }}"
113+
run: |
114+
php -S localhost:8080 &
115+
sleep 3
116+
curl --silent -X POST -H "Content-Type: application/json" \
117+
-d '{"query":"{ hello(name: \"World\") }"}' \
118+
http://localhost:8080/graphql -o output.json
119+
grep -q '"data":{"hello":"Hello World"}' output.json || \
120+
(cat output.json && false)
121+
kill %1

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
/.php_cs/cache
77
/.idea
88

9+
examples/*/vendor/
10+
examples/*/composer.lock
11+
912
node_modules
1013

1114
lib/core/metadata.js

examples/no-framework/README.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
No-Framework Integration Example
2+
================================
3+
4+
```
5+
composer install
6+
php -S 127.0.0.1:8080
7+
```
8+
9+
```
10+
curl -X POST -d '{"query":"{ hello(name: \"World\") }"}' -H "Content-Type: application/json" http://localhost:8080/
11+
```

examples/no-framework/composer.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"autoload": {
3+
"psr-4": {
4+
"App\\": "src/"
5+
}
6+
},
7+
"require": {
8+
"thecodingmachine/graphqlite": "@dev",
9+
"mouf/picotainer": "^1.1",
10+
"symfony/cache": "^4.2"
11+
},
12+
"repositories": [
13+
{
14+
"type": "path",
15+
"url": "tmp-graphqlite",
16+
"options": {
17+
"symlink": true
18+
}
19+
}
20+
],
21+
"scripts": {
22+
"symlink-package": [
23+
"rm -rf tmp-graphqlite && ln -s -f ../../ tmp-graphqlite"
24+
],
25+
"pre-install-cmd": "@symlink-package",
26+
"pre-update-cmd": "@symlink-package"
27+
}
28+
}

examples/no-framework/index.php

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?php
2+
use GraphQL\GraphQL;
3+
use GraphQL\Type\Schema;
4+
use TheCodingMachine\GraphQLite\SchemaFactory;
5+
use TheCodingMachine\GraphQLite\Context\Context;
6+
7+
use Symfony\Component\Cache\Simple\FilesystemCache;
8+
use Mouf\Picotainer\Picotainer;
9+
use GraphQL\Utils\SchemaPrinter;
10+
use App\Controllers\MyController;
11+
12+
require_once __DIR__ . '/vendor/autoload.php';
13+
14+
// $cache is any PSR-16 compatible cache.
15+
$cache = new FilesystemCache();
16+
17+
// $container is any PSR-11 compatible container which has
18+
// been populated with your controller classes.
19+
$container = new Picotainer([
20+
MyController::class => function() {
21+
return new MyController();
22+
},
23+
]);
24+
25+
$factory = new SchemaFactory($cache, $container);
26+
$factory->addControllerNamespace('App\\Controllers')
27+
->addTypeNamespace('App');
28+
29+
$schema = $factory->createSchema();
30+
31+
$rawInput = file_get_contents('php://input');
32+
$input = json_decode($rawInput, true);
33+
$query = $input['query'];
34+
$variableValues = isset($input['variables']) ? $input['variables'] : null;
35+
36+
$result = GraphQL::executeQuery($schema, $query, null, new Context(), $variableValues);
37+
$output = $result->toArray();
38+
39+
header('Content-Type: application/json');
40+
echo json_encode($output) . "\n";
41+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
namespace App\Controllers;
3+
4+
use TheCodingMachine\GraphQLite\Annotations\Query;
5+
6+
class MyController
7+
{
8+
#[Query]
9+
public function hello(string $name): string
10+
{
11+
return 'Hello '.$name;
12+
}
13+
}
14+

0 commit comments

Comments
 (0)