diff --git a/backend/src/Squidex.Domain.Apps.Entities/Assets/AssetOptions.cs b/backend/src/Squidex.Domain.Apps.Entities/Assets/AssetOptions.cs index db4a57baa..099a24d90 100644 --- a/backend/src/Squidex.Domain.Apps.Entities/Assets/AssetOptions.cs +++ b/backend/src/Squidex.Domain.Apps.Entities/Assets/AssetOptions.cs @@ -11,8 +11,6 @@ namespace Squidex.Domain.Apps.Entities.Assets { public int DefaultPageSize { get; set; } = 200; - public int DefaultPageSizeGraphQl { get; set; } = 20; - public int MaxResults { get; set; } = 200; public long MaxSize { get; set; } = 5 * 1024 * 1024; diff --git a/backend/src/Squidex.Domain.Apps.Entities/Contents/ContentOptions.cs b/backend/src/Squidex.Domain.Apps.Entities/Contents/ContentOptions.cs index 58c42d381..354d247c9 100644 --- a/backend/src/Squidex.Domain.Apps.Entities/Contents/ContentOptions.cs +++ b/backend/src/Squidex.Domain.Apps.Entities/Contents/ContentOptions.cs @@ -11,8 +11,6 @@ namespace Squidex.Domain.Apps.Entities.Contents { public int DefaultPageSize { get; set; } = 200; - public int DefaultPageSizeGraphQl { get; set; } = 20; - public int MaxResults { get; set; } = 200; } } diff --git a/backend/src/Squidex/appsettings.json b/backend/src/Squidex/appsettings.json index 5a5e755de..f28fb5489 100644 --- a/backend/src/Squidex/appsettings.json +++ b/backend/src/Squidex/appsettings.json @@ -268,11 +268,6 @@ */ "defaultPageSize": 200, - /* - * The default page size for graphql if not specified by a query. - */ - "defaultPageSizeGraphQL": 20, - /* * The maximum number of items to return for each query. * @@ -287,11 +282,6 @@ */ "defaultPageSize": 200, - /* - * The default page size for graphql if not specified by a query. - */ - "defaultPageSizeGraphQL": 20, - /* * The maximum number of items to return for each query. *