From c68e27d5fb8ca5c28ac132c03a14a12cad4a8212 Mon Sep 17 00:00:00 2001 From: Ronald Loyko <108372764+ronaldloyko@users.noreply.github.com> Date: Sun, 29 Jan 2023 02:51:07 +0200 Subject: [PATCH] feat(appwrite): bump version to 1.2.0 (#850) --- public/v4/apps/appwrite.yml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/public/v4/apps/appwrite.yml b/public/v4/apps/appwrite.yml index d7b3b3c..9b07ecf 100644 --- a/public/v4/apps/appwrite.yml +++ b/public/v4/apps/appwrite.yml @@ -133,6 +133,9 @@ services: _APP_MAINTENANCE_RETENTION_AUDIT: $$cap_APP_MAINTENANCE_RETENTION_AUDIT _APP_SMS_PROVIDER: $$cap_APP_SMS_PROVIDER _APP_SMS_FROM: $$cap_APP_SMS_FROM + _APP_GRAPHQL_MAX_BATCH_SIZE: $$cap_APP_GRAPHQL_MAX_BATCH_SIZE + _APP_GRAPHQL_MAX_COMPLEXITY: $$cap_APP_GRAPHQL_MAX_COMPLEXITY + _APP_GRAPHQL_MAX_DEPTH: $$cap_APP_GRAPHQL_MAX_DEPTH $$cap_appname-realtime: caproverExtra: @@ -599,7 +602,7 @@ caproverOneClickApp: - label: Version Tag id: $$cap_APP_VERSION description: Check out their valid tags at https://hub.docker.com/r/appwrite/appwrite/tags - defaultValue: '1.0.1' + defaultValue: '1.2.0' validRegex: "/^([^\\s^\\/])+$/" - label: General | _APP_ENV id: $$cap_APP_ENV @@ -928,3 +931,18 @@ caproverOneClickApp: description: The maximum duration (in seconds) upto which to retain abuse logs. The default value is 86400 seconds (1 day). defaultValue: 86400 validRegex: /.{1,}/ + - label: GraphQL | _APP_GRAPHQL_MAX_BATCH_SIZE + id: $$cap_APP_GRAPHQL_MAX_BATCH_SIZE + description: Maximum number of batched queries per request. The default value is 10. + defaultValue: 10 + validRegex: /.{1,}/ + - label: GraphQL | _APP_GRAPHQL_MAX_COMPLEXITY + id: $$cap_APP_GRAPHQL_MAX_COMPLEXITY + description: Maximum complexity of a GraphQL query. One field adds one to query complexity. Lists multiply the complexity by the number of items requested. The default value is 250. + defaultValue: 250 + validRegex: /.{1,}/ + - label: GraphQL | _APP_GRAPHQL_MAX_DEPTH + id: $$cap_APP_GRAPHQL_MAX_DEPTH + description: Maximum depth of a GraphQL query. One nested field level adds one to query depth. The default value is 3. + defaultValue: 3 + validRegex: /.{1,}/