Erik Wrede
Erik Wrede
Hey there, I'll check it out more closely this week.
Hey, sorry for the late reply on this. I cannot reproduce your error with the following MWE: ```python from graphene_federation import shareable from graphene_federation.entity import key from graphene_federation.main import build_schema...
Hey there, which Federation version are you using?
AFAIK the `extend` is optional on `type Query` in Federation v2. However, we can surely add it back for both federation versions, as this should not break things. /cc @patrick91
Makes sense. @MrSaints it might be worthwhile to open a bug report at your specific Gateway implementation. Which one are you using? 😊
This is intended behavior - in some cases you want to instrument all of your resolvers to see how they're performing. However, we could extend the OTel support for finer...
I prefer an explicit `BatchingConfig.enable_batching` over `not schema.batching_config batching disabled`. Will do full review later
Tuning in here to add some points from the chat with @kamilkisiela: - there should be a way to tag the previews with either a revision or some other name...
Hey, let's delay the enum part of this until we've standardized https://github.com/strawberry-graphql/strawberry/issues/3543 This will allow us to just use any enum and have strawberry's core logic handle the rest.
Sounds very useful! Maybe we can explicitly define the fields instead of doing include, such as in `strawberry-django`: ``` @strawberry_sqlalchemy.type class OnlyIncluded: fieldA: strawberry.auto fieldB: strawberry.auto ``` and have the...