Nested Arguments, Custom GraphQL Resolver

I’ve set up a custom resolver that maps to a custom controller for my app. The type that the resolver returns includes a relation that I’d like to be able to filter similar to how the auto generated resolvers allow filtering of relations. However, I don’t see the nested arguments I’m passing in the query in the options param of the resolver. Is it possible to user these nested arguments in some other way? For clarity, I have a playerProfile query that has a PlayerProfile type return. The PlayerProfile type looks like

type PlayerProfile { player: UsersPermissionsUser! playersDefeated: Int! matchAndLeagueResults(start: Int, limit: Int): [PlayerResult]! }

I’d like to access the start and limit arguments for the matchAndLeagueResults field so that I can use them in my custom controller. Thanks!