1
0
Fork 0
mirror of synced 2024-06-28 19:20:25 +12:00

fix: graphql

This commit is contained in:
Torsten Dittmann 2023-03-01 18:13:34 +05:30
parent 0dd666c227
commit bfd23665cb
2 changed files with 1 additions and 4 deletions

View file

@ -30,7 +30,7 @@ App::get('/v1/graphql')
->label('sdk.response.model', Response::MODEL_ANY)
->label('abuse-limit', 60)
->label('abuse-time', 60)
->param('query', '', new Text(0), 'The query to execute.')
->param('query', '', new Text(0, 0), 'The query to execute.')
->param('operationName', '', new Text(256), 'The name of the operation to execute.', true)
->param('variables', '', new Text(0), 'The JSON encoded variables to use in the query.', true)
->inject('request')

View file

@ -109,9 +109,6 @@ class Mapper
'type' => $parameterType,
'description' => $parameter['description'],
];
if ($parameter['optional']) {
$params[$name]['defaultValue'] = $parameter['default'];
}
}
$field = [