PascalSenn

Results 168 comments of PascalSenn

Found two more Windows tilers: - https://github.com/ZaneA/HashTWM DWM port by @ZaneA - https://github.com/ritschmaster/b3 Still very hot 🔥 made by @ritschmaster Maybe it's worth reaching out to @ritschmaster as this is...

@AlexBar ``` builder.Services .AddGraphQLServer() .AddRemoteSchemaFromFile("TestSchema", @"schema.graphql") .AddType(new AnyType("ObjectId"); builder.Services.AddGraphQL("TestSchema").AddType(new AnyType("ObjectId"); ```

@SiberaIndustries no, but we have a lot of stale issues, a comment would have been enough to keep the issue open

Another option would be: ```csharp public IObjectFieldDescriptor NonNull( bool scalar = true, bool list = true, bool nestedList= true); ``` For scalars list and nested lists would the default behaviour...

@aahmadi458 we do not have to worry about 3 or more dimensions because in GraphQl only two dimensional lists are supported. This is defined by the offical specification

@jabellard Sorry i didnt complete the review so the comments were still pending 🤦 I have a couple of questions.

@jabellard So i have changed the implementation to use InMemory and the default QueryableProvider. With this implementation we are now also able to use marten with resolver that return "IEnumerable"...

Also a major issues are the List operations. Most of them seem not to work It seems like most of the list operations will not work: https://martendb.io/v3/documentation/documents/querying/linq Should we disable...