Category "resolver"

How to get requested GraphQL fields in C#?

I'm working on a GraphQL -> SQL parser that includes some joins, so it makes a performance difference whether a certain field is requested. Is there a way to

Inject a StateObject into SwiftUI View

Can @StateObject be injected using Resolver? I have the following: struct FooView: View { @StateObject private var viewModel: FooViewModel some code }