Shane Krueger

Results 854 comments of Shane Krueger

@gao-artur Should we work on this for v9 or should we close it?

Encoding a micro code with text "abc" only has empty padding and does not use the repeating pattern. ```python qr = segno.make('abc', micro=True) ``` This correctly follows this logic: -...

CodeQL does not yet support .NET 10 https://codeql.github.com/docs/codeql-overview/supported-languages-and-frameworks/

Todo: fix warnings

What are the benefits of eager initialization via IHostedService? If it fails, it seems to me it would have the same consequences as lazy initialization, unless there was special code...

Can you explain what you mean?

GraphQL.NET includes a built-in validation rule called **[OverlappingFieldsCanBeMerged](https://github.com/graphql-dotnet/graphql-dotnet/blob/master/src/GraphQL/Validation/Rules/OverlappingFieldsCanBeMerged.cs)**, which addresses **field selection conflicts**, including some alias overloading scenarios. --- ### ✅ What `OverlappingFieldsCanBeMerged` Does This rule ensures that **two or...

The example you gave above is a legal GraphQL query, so GraphQL.NET will process it without errors by default. There are a few different approaches, of which you could use...

> Thanks [@Shane32](https://github.com/Shane32) Is the `OverlappingFieldsCanBeMerged` rule present from a specific version of GraphQl.NET or in every version? I am using `7.4.1` Yes it is present. I don't think the...

> In general, I'd like to follow .NET analysis rules. I'm not sure exactly what that means in this specific case, but one of my goals is to enable the...