Correct get list default values

This commit is contained in:
Jake Barnby 2022-05-03 17:39:47 +12:00
parent c00f20f212
commit fba936c2dc
No known key found for this signature in database
GPG key ID: A4674EBC0E404657

View file

@ -322,6 +322,7 @@ class Builder
$mutationFields = [];
$limit = 1000;
$offset = 0;
$wg = new WaitGroup();
while (!empty($attrs = Authorization::skip(fn() => $dbForProject->find(
@ -354,13 +355,13 @@ class Builder
]);
$idArgs = [
'id' => [
'type' => Type::string()
'type' => Type::string(),
]
];
$listArgs = [
'limit' => [
'type' => Type::int(),
'defaultValue' => $limit,
'defaultValue' => 25,
],
'offset' => [
'type' => Type::int(),
@ -368,7 +369,11 @@ class Builder
],
'cursor' => [
'type' => Type::string(),
'defaultValue' => null,
'defaultValue' => '',
],
'cursorDirection' => [
'type' => Type::string(),
'defaultValue' => Database::CURSOR_AFTER,
],
'orderAttributes' => [
'type' => Type::listOf(Type::string()),