0f8752d5ab
* Graphql extras * extra server resource test * usings * Fixed test
14 lines
424 B
C#
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);
|