65 bool? needZeroLengthPasswordWithOAuthConnections,
66 CancellationToken cancellationToken);
For editing a given user.
Represents a response from an authority.
Evaluates a set of IAuthorizationRequirements to be checked before executing a response.
Business logic for interating with the server.
IAuthority for managing Users.
RequirementsGated< AuthorityResponse< User > > Read(CancellationToken cancellationToken)
Gets the currently authenticated user.
RequirementsGated< AuthorityResponse< User > > GetId(long id, bool includeJoins, bool allowSystemUser, CancellationToken cancellationToken)
Gets the User with a given id .
RequirementsGated< AuthorityResponse< UpdatedUser > > Update(UserUpdateRequest updateRequest, CancellationToken cancellationToken)
Updates a User.
RequirementsGated< AuthorityResponse< GraphQL.Types.OAuth.OidcConnection[]> > OidcConnections(long userId, CancellationToken cancellationToken)
Gets the GraphQL.Types.OAuth.OidcConnections for the User with a given userId .
RequirementsGated< AuthorityResponse< GraphQL.Types.OAuth.OAuthConnection[]> > OAuthConnections(long userId, CancellationToken cancellationToken)
Gets the GraphQL.Types.OAuth.OAuthConnections for the User with a given userId .
RequirementsGated< IQueryable< User > > Queryable(bool includeJoins)
Gets all registered Users.
RequirementsGated< AuthorityResponse< UpdatedUser > > Create(UserCreateRequest createRequest, bool? needZeroLengthPasswordWithOAuthConnections, CancellationToken cancellationToken)
Creates a User.