diff options
| author | Ronald Loyko <[email protected]> | 2023-01-29 02:51:07 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-01-28 16:51:07 -0800 |
| commit | c68e27d5fb8ca5c28ac132c03a14a12cad4a8212 (patch) | |
| tree | ca4fb771e77441922ddc91422ea1a89120b62729 | |
| parent | fe14025ea6b0e8ce053ebe40148eb28e196d7ace (diff) | |
| download | caprover-one-click-apps-c68e27d5fb8ca5c28ac132c03a14a12cad4a8212.tar.gz caprover-one-click-apps-c68e27d5fb8ca5c28ac132c03a14a12cad4a8212.zip | |
feat(appwrite): bump version to 1.2.0 (#850)
| -rw-r--r-- | public/v4/apps/appwrite.yml | 20 |
1 files changed, 19 insertions, 1 deletions
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,}/ |
