Skip to content

Commit 34c68b9

Browse files
authoredJul 23, 2021
Mark API of 11.3.2 as shipped (#3977)
1 parent ce7babc commit 34c68b9

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed
 

‎src/HotChocolate/Core/src/Types.CursorPagination/PublicAPI.Shipped.txt

+4-2
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ HotChocolate.Types.Pagination.QueryableCursorPagingProvider
6767
HotChocolate.Types.Pagination.QueryableCursorPagingProvider.QueryableCursorPagingProvider() -> void
6868
HotChocolate.Types.PagingObjectFieldDescriptorExtensions
6969
HotChocolate.Types.UsePagingAttribute
70+
HotChocolate.Types.UsePagingAttribute.AllowBackwardPagination.get -> bool
71+
HotChocolate.Types.UsePagingAttribute.AllowBackwardPagination.set -> void
7072
HotChocolate.Types.UsePagingAttribute.DefaultPageSize.get -> int
7173
HotChocolate.Types.UsePagingAttribute.DefaultPageSize.set -> void
7274
HotChocolate.Types.UsePagingAttribute.IncludeTotalCount.get -> bool
@@ -94,8 +96,8 @@ static HotChocolate.Types.Pagination.ConnectionType<T>.ApplyConfig(HotChocolate.
9496
static HotChocolate.Types.Pagination.CursorPagingHelper.ApplyPagination<TSource, TEntity>(TSource source, HotChocolate.Types.Pagination.CursorPagingArguments arguments, HotChocolate.Types.Pagination.CursorPagingHelper.ApplySkip<TSource>! applySkip, HotChocolate.Types.Pagination.CursorPagingHelper.ApplyTake<TSource>! applyTake, HotChocolate.Types.Pagination.CursorPagingHelper.ToIndexEdgesAsync<TSource, TEntity>! toIndexEdgesAsync, HotChocolate.Types.Pagination.CursorPagingHelper.CountAsync<TSource>! countAsync, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<HotChocolate.Types.Pagination.Connection!>
9597
static HotChocolate.Types.Pagination.IndexEdge<T>.Create(T node, int index) -> HotChocolate.Types.Pagination.IndexEdge<T>!
9698
static HotChocolate.Types.Pagination.IndexEdge<T>.DeserializeCursor(string! cursor) -> int
97-
static HotChocolate.Types.PagingObjectFieldDescriptorExtensions.AddPagingArguments(this HotChocolate.Types.IInterfaceFieldDescriptor! descriptor) -> HotChocolate.Types.IInterfaceFieldDescriptor!
98-
static HotChocolate.Types.PagingObjectFieldDescriptorExtensions.AddPagingArguments(this HotChocolate.Types.IObjectFieldDescriptor! descriptor) -> HotChocolate.Types.IObjectFieldDescriptor!
99+
static HotChocolate.Types.PagingObjectFieldDescriptorExtensions.AddPagingArguments(this HotChocolate.Types.IInterfaceFieldDescriptor! descriptor, bool allowBackwardPagination = true) -> HotChocolate.Types.IInterfaceFieldDescriptor!
100+
static HotChocolate.Types.PagingObjectFieldDescriptorExtensions.AddPagingArguments(this HotChocolate.Types.IObjectFieldDescriptor! descriptor, bool allowBackwardPagination = true) -> HotChocolate.Types.IObjectFieldDescriptor!
99101
static HotChocolate.Types.PagingObjectFieldDescriptorExtensions.UsePaging(this HotChocolate.Types.IInterfaceFieldDescriptor! descriptor, System.Type? type = null, HotChocolate.Types.Pagination.PagingOptions options = default(HotChocolate.Types.Pagination.PagingOptions)) -> HotChocolate.Types.IInterfaceFieldDescriptor!
100102
static HotChocolate.Types.PagingObjectFieldDescriptorExtensions.UsePaging(this HotChocolate.Types.IObjectFieldDescriptor! descriptor, System.Type? type = null, System.Type? entityType = null, HotChocolate.Types.GetCursorPagingProvider? resolvePagingProvider = null, HotChocolate.Types.Pagination.PagingOptions options = default(HotChocolate.Types.Pagination.PagingOptions)) -> HotChocolate.Types.IObjectFieldDescriptor!
101103
static HotChocolate.Types.PagingObjectFieldDescriptorExtensions.UsePaging<TSchemaType, TEntity>(this HotChocolate.Types.IObjectFieldDescriptor! descriptor, HotChocolate.Types.GetCursorPagingProvider? resolvePagingProvider = null, HotChocolate.Types.Pagination.PagingOptions options = default(HotChocolate.Types.Pagination.PagingOptions)) -> HotChocolate.Types.IObjectFieldDescriptor!

‎src/HotChocolate/Core/src/Types/PublicAPI.Shipped.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1143,6 +1143,7 @@ const HotChocolate.Types.Introspection.__AppliedDirective.Names.Name = "name" ->
11431143
const HotChocolate.Types.Introspection.__DirectiveArgument.Names.__DirectiveArgument = "__DirectiveArgument" -> string!
11441144
const HotChocolate.Types.Introspection.__DirectiveArgument.Names.Name = "name" -> string!
11451145
const HotChocolate.Types.Introspection.__DirectiveArgument.Names.Value = "value" -> string!
1146+
const HotChocolate.Types.Pagination.PagingDefaults.AllowBackwardPagination = true -> bool
11461147
const HotChocolate.Types.Pagination.PagingDefaults.DefaultPageSize = 10 -> int
11471148
const HotChocolate.Types.Pagination.PagingDefaults.IncludeTotalCount = false -> bool
11481149
const HotChocolate.Types.Pagination.PagingDefaults.MaxPageSize = 50 -> int
@@ -2673,6 +2674,8 @@ HotChocolate.Types.Pagination.PagingMiddleware
26732674
HotChocolate.Types.Pagination.PagingMiddleware.InvokeAsync(HotChocolate.Resolvers.IMiddlewareContext! context) -> System.Threading.Tasks.Task!
26742675
HotChocolate.Types.Pagination.PagingMiddleware.PagingMiddleware(HotChocolate.Resolvers.FieldDelegate! next, HotChocolate.Types.Pagination.IPagingHandler! pagingHandler) -> void
26752676
HotChocolate.Types.Pagination.PagingOptions
2677+
HotChocolate.Types.Pagination.PagingOptions.AllowBackwardPagination.get -> bool?
2678+
HotChocolate.Types.Pagination.PagingOptions.AllowBackwardPagination.set -> void
26762679
HotChocolate.Types.Pagination.PagingOptions.DefaultPageSize.get -> int?
26772680
HotChocolate.Types.Pagination.PagingOptions.DefaultPageSize.set -> void
26782681
HotChocolate.Types.Pagination.PagingOptions.IncludeTotalCount.get -> bool?

0 commit comments

Comments
 (0)
Please sign in to comment.