Lili Serfaty
Lili Serfaty
@axwalker thanks for posting this! Can you provide a little more context on how you would use this to implement global filtering on a DjangoObjectType?
Ah, gotcha. Thanks for clarifying. Unfortunately this doesn't account for my main use-case of filtering related objects.
Here's an example from pagination in our real-world schema: ``` input PaginationConfig { cursor: String direction: PaginationDirection = AFTER limit: Int = 20 } ```
> @liliserf Thanks for sharing! Do any of the arguments (or other input object fields) that reference this type have a default? Nope, just the one.