Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ChilliCream/graphql-platform
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 12.3.0
Choose a base ref
...
head repository: ChilliCream/graphql-platform
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 12.3.1
Choose a head ref
  • 2 commits
  • 8 files changed
  • 2 contributors

Commits on Nov 17, 2021

  1. Update BCP Version

    rstaib committed Nov 17, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Mic92 Jörg Thalheim
    Copy the full SHA
    7f8100e View commit details

Commits on Nov 19, 2021

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Mic92 Jörg Thalheim
    Copy the full SHA
    6077e82 View commit details
Original file line number Diff line number Diff line change
@@ -90,7 +90,7 @@ public static IRequestExecutorBuilder AddGraphQLFunction(
/// Returns <see cref="IRequestExecutorBuilder"/> so that configuration can be chained.
/// </returns>
public static IRequestExecutorBuilder ModifyFunctionOptions(
IRequestExecutorBuilder builder,
this IRequestExecutorBuilder builder,
Action<GraphQLServerOptions> configure)
{
if (builder is null)
Original file line number Diff line number Diff line change
@@ -7,4 +7,4 @@ Microsoft.Azure.Functions.Extensions.DependencyInjection.HotChocolateFunctionsHo
Microsoft.Extensions.DependencyInjection.HotChocolateAzureFunctionServiceCollectionExtensions
static Microsoft.Azure.Functions.Extensions.DependencyInjection.HotChocolateFunctionsHostBuilderExtensions.AddGraphQLFunction(this Microsoft.Azure.Functions.Extensions.DependencyInjection.IFunctionsHostBuilder! builder, int maxAllowedRequestSize = 20000000, string! apiRoute = "/api/graphql") -> HotChocolate.Execution.Configuration.IRequestExecutorBuilder!
static Microsoft.Extensions.DependencyInjection.HotChocolateAzureFunctionServiceCollectionExtensions.AddGraphQLFunction(this Microsoft.Extensions.DependencyInjection.IServiceCollection! services, int maxAllowedRequestSize = 20000000, string! apiRoute = "/api/graphql") -> HotChocolate.Execution.Configuration.IRequestExecutorBuilder!
static Microsoft.Extensions.DependencyInjection.HotChocolateAzureFunctionServiceCollectionExtensions.ModifyFunctionOptions(HotChocolate.Execution.Configuration.IRequestExecutorBuilder! builder, System.Action<HotChocolate.AspNetCore.GraphQLServerOptions!>! configure) -> HotChocolate.Execution.Configuration.IRequestExecutorBuilder!
static Microsoft.Extensions.DependencyInjection.HotChocolateAzureFunctionServiceCollectionExtensions.ModifyFunctionOptions(this HotChocolate.Execution.Configuration.IRequestExecutorBuilder! builder, System.Action<HotChocolate.AspNetCore.GraphQLServerOptions!>! configure) -> HotChocolate.Execution.Configuration.IRequestExecutorBuilder!
Original file line number Diff line number Diff line change
@@ -18,6 +18,7 @@ const HotChocolate.ErrorCodes.Data.NoPagingationProviderFound = "HC0025" -> stri
const HotChocolate.ErrorCodes.Data.SortingProjectionFailed = "HC0024" -> string!
const HotChocolate.ErrorCodes.Execution.AutoMapVarError = "EXEC_BATCH_AUTO_MAP_VAR_TYPE" -> string!
const HotChocolate.ErrorCodes.Execution.Canceled = "HC0049" -> string!
const HotChocolate.ErrorCodes.Execution.CannotCastParent = "HC0053" -> string!
const HotChocolate.ErrorCodes.Execution.CannotCreateRootValue = "HC0019" -> string!
const HotChocolate.ErrorCodes.Execution.CannotResolveAbstractType = "EXEC_UNABLE_TO_RESOLVE_ABSTRACT_TYPE" -> string!
const HotChocolate.ErrorCodes.Execution.CannotSerialize = "EXEC_BATCH_VAR_SERIALIZE" -> string!
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
const HotChocolate.ErrorCodes.Execution.CannotCastParent = "HC0053" -> string!
Original file line number Diff line number Diff line change
@@ -83,6 +83,7 @@ static HotChocolate.Types.OffsetPagingObjectFieldDescriptorExtensions.UseOffsetP
static HotChocolate.Types.OffsetPagingObjectFieldDescriptorExtensions.UseOffsetPaging<TSchemaType>(this HotChocolate.Types.IObjectFieldDescriptor! descriptor, System.Type? itemType = null, HotChocolate.Types.GetOffsetPagingProvider? resolvePagingProvider = null, HotChocolate.Types.Pagination.PagingOptions options = default(HotChocolate.Types.Pagination.PagingOptions)) -> HotChocolate.Types.IObjectFieldDescriptor!
static HotChocolate.Types.Pagination.CollectionSegmentCountType<T>.ApplyConfig(HotChocolate.Types.IObjectTypeDescriptor<HotChocolate.Types.Pagination.CollectionSegment!>! descriptor) -> void
static HotChocolate.Types.Pagination.CollectionSegmentType<T>.ApplyConfig(HotChocolate.Types.IObjectTypeDescriptor<HotChocolate.Types.Pagination.CollectionSegment!>! descriptor) -> void
static HotChocolate.Types.Pagination.Extensions.OffsetPagingQueryableExtensions.ApplyOffsetPaginationAsync<TEntity>(this System.Linq.IQueryable<TEntity>! query, HotChocolate.Resolvers.IResolverContext! context, int? defaultPageSize = null, int? totalCount = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<HotChocolate.Types.Pagination.CollectionSegment<TEntity>!>
static HotChocolate.Types.Pagination.Extensions.OffsetPagingQueryableExtensions.ApplyOffsetPaginationAsync<TEntity>(this System.Linq.IQueryable<TEntity>! query, HotChocolate.Types.Pagination.OffsetPagingArguments arguments, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<HotChocolate.Types.Pagination.CollectionSegment<TEntity>!>
static HotChocolate.Types.Pagination.Extensions.OffsetPagingQueryableExtensions.ApplyOffsetPaginationAsync<TEntity>(this System.Linq.IQueryable<TEntity>! query, int? skip = null, int? take = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<HotChocolate.Types.Pagination.CollectionSegment<TEntity>!>
static Microsoft.Extensions.DependencyInjection.OffsetPagingRequestExecutorBuilderExtension.AddOffsetPagingProvider<TProvider>(this HotChocolate.Execution.Configuration.IRequestExecutorBuilder! builder, string? providerName = null, bool defaultProvider = false) -> HotChocolate.Execution.Configuration.IRequestExecutorBuilder!
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
static HotChocolate.Types.Pagination.Extensions.OffsetPagingQueryableExtensions.ApplyOffsetPaginationAsync<TEntity>(this System.Linq.IQueryable<TEntity>! query, HotChocolate.Resolvers.IResolverContext! context, int? defaultPageSize = null, int? totalCount = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) -> System.Threading.Tasks.ValueTask<HotChocolate.Types.Pagination.CollectionSegment<TEntity>!>
11 changes: 5 additions & 6 deletions website/src/docs/bananacakepop/index.md
Original file line number Diff line number Diff line change
@@ -6,13 +6,12 @@ Banana Cake Pop makes it easy and enjoyable to test your GraphQL server implemen

# Download

Banana Cake Pop is currently in preview and the current version is `1.0.0-preview.15`. It has an auto update feature built in, so as new releases come out you will get notifications in the app.
Banana Cake Pop is currently in preview and the current version is `1.0.0-preview.14`. It has an auto update feature built in, so as new releases come out you will get notifications in the app.

- [MacOS Installer (Intel)](https://download.chillicream.com/bananacakepop/BananaCakePop-1.0.0-preview.15-mac-x64.dmg)
- [MacOS Installer (Apple Silicon)](https://download.chillicream.com/bananacakepop/BananaCakePop-1.0.0-preview.15-mac-arm64.dmg)
- [Windows Installer](https://download.chillicream.com/bananacakepop/BananaCakePop-1.0.0-preview.15-win-x64.exe)
- [Ubuntu Installer (AppImage)](https://download.chillicream.com/bananacakepop/BananaCakePop-1.0.0-preview.15-linux-x86_64.AppImage)
- [Ubuntu Installer (Snap)](https://download.chillicream.com/bananacakepop/BananaCakePop-1.0.0-preview.15-linux-amd64.snap)
- [MacOS Installer (Intel)](https://download.chillicream.com/bananacakepop/BananaCakePop-1.0.0-preview.14.dmg)
- [Windows Installer](https://download.chillicream.com/bananacakepop/BananaCakePop-1.0.0-preview.14.exe)
- [Ubuntu Installer (AppImage)](https://download.chillicream.com/bananacakepop/BananaCakePop-1.0.0-preview.14.AppImage)
- [Ubuntu Installer (Snap)](https://download.chillicream.com/bananacakepop/BananaCakePop-1.0.0-preview.14.snap)

After downloading head over to [getting started](/docs/bananacakepop/getting-started) and lets make our first GraphQL query in Banana Cake Pop.

2 changes: 1 addition & 1 deletion website/src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -116,7 +116,7 @@ const IndexPage: FC = () => {
<Link to="https://bananacakepop.com">
<BananaCakePop shadow />
<SlideContent>
<SlideTitle>Try Banana Cake Pop Preview 15</SlideTitle>
<SlideTitle>Try Banana Cake Pop Preview 14</SlideTitle>
<SlideDescription>
Our GraphQL IDE to explore schemas, execute operations and get
deep performance insights.