Chris Shadek
Chris Shadek
### Describe the bug Regardless of log level, the app.autoMigrate() function still prints NOTICE logs. ### To Reproduce ``` app.logger.log(level: .notice, "TEST 1", metadata: nil, source: nil) app.logger.logLevel = .error...
The GraphQL spec specifies that the top level fields in mutations should execute serially. http://spec.graphql.org/June2018/#sec-Mutation When I run a Mutation like the following using Graphiti, I get race conditions and...
Async-await will be added in Swift 5.5. https://github.com/apple/swift-evolution/blob/main/proposals/0296-async-await.md
I'm running Graphiti 0.26.0 and noticed that Mutations seem to be running in parallel when they should be running in series. A simple example would be: ``` mutation Test {...
I tried using @skip and @include in a query and they didn't seem to work.
My understanding is that unions are defined using protocols and that protocols, and the `Node` type in a connection needs to implement `Encodable`. Is it possible to make a connection...
For example, how could we add a `totalCount` field to the `Connection` or maybe even another field to the `Edge` object. This use case is discussed here: https://graphql.org/learn/pagination/ This is...
If a type's name is overridden, then TypeReference does not seem to work. Example (I want the schema to use the name Location instead of LocationObject): ``` Type(LocationObject.self, as: "Location",...
Is there a way to create parts of the schema in another file or function, similar to SwiftUI? ``` init(resolver: Resolver) throws { ... self.schema = try Schema { OtherSchema()...
I noticed that @paulofaria added connections in an earlier commit. I was trying to use them in my code but have not succeeded in getting them working. Here is what...