Files
speckle-sharp-sdk/src/Speckle.Sdk/Api/GraphQL/Inputs/UserInputs.cs
T
Jedd Morgan 0f8752d5ab feat(api): Improvements to GrahpQL error handling (#304)
* Graphql extras

* extra server resource test

* usings

* Fixed test
2025-05-20 12:44:23 +00:00

14 lines
424 B
C#

namespace Speckle.Sdk.Api.GraphQL.Inputs;
public record UserUpdateInput(string? avatar = null, string? bio = null, string? company = null, string? name = null);
public record UserProjectsFilter(
string? search = null,
IReadOnlyList<string>? onlyWithRoles = null,
string? workspaceId = null,
bool? personalOnly = null,
bool? includeImplicitAccess = null
);
public record UserWorkspacesFilter(string? search);