From 1899b3ccd283010a236d758c2fa5907e27dadfc9 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Thu, 21 Jul 2022 16:37:21 +1200 Subject: [PATCH] Fix order types param --- src/Appwrite/GraphQL/TypeRegistry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/GraphQL/TypeRegistry.php b/src/Appwrite/GraphQL/TypeRegistry.php index 56acec1482..f1fcef65f5 100644 --- a/src/Appwrite/GraphQL/TypeRegistry.php +++ b/src/Appwrite/GraphQL/TypeRegistry.php @@ -63,7 +63,7 @@ class TypeRegistry 'type' => Type::listOf(Type::string()), 'defaultValue' => [], ], - 'orderType' => [ + 'orderTypes' => [ 'type' => Type::listOf(Type::string()), 'defaultValue' => [], ],