Coffee
- Brumes: https://g.page/BrumesAnnecy?share
- Cafe Bunna: https://g.page/cafebunnaannecy?share
- Haven (aussie themed)
Brunch
- Le Bar Roux d'Heure (or lunch/chill/drinks)
- Haven (aussie themed)
Vin
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using HotChocolate.Language; | |
using HotChocolate.Stitching.Merge; | |
using HotChocolate.Stitching.Merge.Rewriters; | |
using HotChocolate.Types; | |
namespace MyCompany.GraphQLService.Stitching | |
{ |
Coffee
Brunch
Vin
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using HotChocolate.Stitching.Merge; | |
namespace MyCompany.GatewayService.Stitching | |
{ | |
/// <summary> | |
/// <para>This merge handler deals with duplicate directives when schemas are stitched.</para> | |
/// <para>It currently handles dupes of: authorize.</para> |
Removes any fields that look to be internal based on presence of "dbId" in field name or arg.
services.
.AddGraphQLServer()
.AddTypeRewriter(new RemoveInternalFieldsRewriter())
using System; | |
using System.Collections.Generic; | |
using HotChocolate; | |
using HotChocolate.Execution; | |
using HotChocolate.Execution.Instrumentation; | |
using HotChocolate.Resolvers; | |
using Microsoft.Extensions.Logging; | |
namespace MyCompany.GraphQL.Execution.Instrumentation | |
{ |
A converter setup for System.Text.Json that:
Helpful in transition off Newtonsoft if your clients were passing string values but you still want to serialize out as numeric. Related issue that might make this redundant: dotnet/runtime#61726
Usage:
options.Converters.Add(new EnumConverterUsingEnumParseFactory());
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics.CodeAnalysis; | |
using System.Linq; | |
using System.Text.RegularExpressions; | |
namespace VerifyTests | |
{ | |
public static class VerifySettingsExtensions | |
{ |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using RazorEngineCore; | |
namespace MyCompany.Templating.RazorEngineCore | |
{ | |
public static class IRazorEngineExtensions | |
{ | |
// See: |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Reflection; | |
using HotChocolate.Configuration; | |
using HotChocolate.Types.Descriptors; | |
using HotChocolate.Types.Descriptors.Definitions; | |
namespace HotChocolate.Types.Relay | |
{ | |
/// <summary> |
using System; | |
using System.Collections.Generic; | |
using System.Collections.Immutable; | |
using System.Linq; | |
using System.Threading.Tasks; | |
using HotChocolate; | |
using HotChocolate.Execution; | |
using HotChocolate.Language; | |
using HotChocolate.Resolvers; | |
using HotChocolate.Stitching; |