diff --git a/src/Tgstation.Server.Host/GraphQL/Types/UserGroupsRepository.cs b/src/Tgstation.Server.Host/GraphQL/Types/UserGroupsRepository.cs index ee1b341ace..9837ac5f2e 100644 --- a/src/Tgstation.Server.Host/GraphQL/Types/UserGroupsRepository.cs +++ b/src/Tgstation.Server.Host/GraphQL/Types/UserGroupsRepository.cs @@ -62,7 +62,7 @@ namespace Tgstation.Server.Host.GraphQL.Types [UseFiltering] [UseSorting] [Cost(Costs.NonIndexedQueryable)] - public async ValueTask> QueryableGroups( + public async ValueTask> Queryable( [Service] IGraphQLAuthorityInvoker userGroupAuthority) { ArgumentNullException.ThrowIfNull(userGroupAuthority); diff --git a/src/Tgstation.Server.Host/GraphQL/Types/UsersRepository.cs b/src/Tgstation.Server.Host/GraphQL/Types/UsersRepository.cs index e8fa0b9497..9739392fab 100644 --- a/src/Tgstation.Server.Host/GraphQL/Types/UsersRepository.cs +++ b/src/Tgstation.Server.Host/GraphQL/Types/UsersRepository.cs @@ -88,7 +88,7 @@ namespace Tgstation.Server.Host.GraphQL.Types [UseProjection] [UseFiltering] [UseSorting] - public async ValueTask> QueryableUsers( + public async ValueTask> Queryable( [Service] IGraphQLAuthorityInvoker userAuthority) { ArgumentNullException.ThrowIfNull(userAuthority);