Add doesUsernameExist
All checks were successful
Tests / Tests (pull_request) Successful in 15s

This commit is contained in:
Mike Kalange 2024-10-30 12:07:54 -07:00
parent 9db95c4e6c
commit 4ef13a482a
2 changed files with 6 additions and 0 deletions

View File

@ -2154,6 +2154,7 @@ export enum ProcessingStatusEnum {
export type Query = {
__typename?: "Query";
doesUsernameExist: Scalars["Boolean"]["output"];
getAggregatedShotMetrics: Array<AggregateResultGql>;
getBucketSet?: Maybe<BucketSetGql>;
getDeployedConfig: DeployedConfigGql;
@ -2176,6 +2177,10 @@ export type Query = {
waitFor: Scalars["Float"]["output"];
};
export type QueryDoesUsernameExistArgs = {
candidateUsername: Scalars["String"]["input"];
};
export type QueryGetAggregatedShotMetricsArgs = {
aggregateInput: AggregateInputGql;
};

View File

@ -29,6 +29,7 @@ type Query {
getShotsByIds(ids: [Int!]!): [ShotGQL!]!
getShotAnnotationTypes(errorTypes: Boolean = false): [ShotAnnotationTypeGQL!]!
getUser(userId: Int!): UserGQL
doesUsernameExist(candidateUsername: String!): Boolean!
getLoggedInUser: UserGQL
getUsernames(
matchString: String = null