Files
appwrite/app/controllers/api/graphql.php
T
2020-01-03 23:16:26 +02:00

23 lines
556 B
PHP

<?php
global $utopia;
/**
* TODO:
* 1. Map all objects, object-params, object-fields
* 2. Parse GraphQL request payload (use: https://github.com/webonyx/graphql-php)
* 3. Route request to relevant controllers (of REST API?) / resolvers and aggergate data
* 4. Handle errors if any
* 5. Returen JSON response
* 6. Write tests!
*/
$utopia->post('/v1/graphql')
->desc('GraphQL Endpoint')
->label('scope', 'public')
->action(
function () {
throw new Exception('Method not supported yet', 500);
}
);