Skip to content

Commit

Permalink
graphql confirmation
Browse files Browse the repository at this point in the history
  • Loading branch information
burtonjong committed Aug 5, 2024
1 parent d121673 commit 507c655
Show file tree
Hide file tree
Showing 8 changed files with 1,494 additions and 1,472 deletions.
1,384 changes: 691 additions & 693 deletions amplify/auth/pre-sign-up/graphql/API.ts

Large diffs are not rendered by default.

30 changes: 17 additions & 13 deletions amplify/auth/pre-sign-up/graphql/mutations.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
/* tslint:disable */

/* eslint-disable */
// this is an auto generated file. This will be overwritten

import * as APITypes from "./API";

type GeneratedMutation<InputType, OutputType> = string & {
__generatedMutationInput: InputType;
__generatedMutationOutput: OutputType;
};

export const createSessionAttended = /* GraphQL */ `mutation CreateSessionAttended(
export const createSessionAttended =
/* GraphQL */ `mutation CreateSessionAttended(
$condition: ModelSessionAttendedConditionInput
$input: CreateSessionAttendedInput!
) {
Expand Down Expand Up @@ -37,9 +39,9 @@ export const createSessionAttended = /* GraphQL */ `mutation CreateSessionAttend
}
}
` as GeneratedMutation<
APITypes.CreateSessionAttendedMutationVariables,
APITypes.CreateSessionAttendedMutation
>;
APITypes.CreateSessionAttendedMutationVariables,
APITypes.CreateSessionAttendedMutation
>;
export const createTimer = /* GraphQL */ `mutation CreateTimer(
$condition: ModelTimerConditionInput
$input: CreateTimerInput!
Expand Down Expand Up @@ -84,7 +86,8 @@ export const createUser = /* GraphQL */ `mutation CreateUser(
APITypes.CreateUserMutationVariables,
APITypes.CreateUserMutation
>;
export const deleteSessionAttended = /* GraphQL */ `mutation DeleteSessionAttended(
export const deleteSessionAttended =
/* GraphQL */ `mutation DeleteSessionAttended(
$condition: ModelSessionAttendedConditionInput
$input: DeleteSessionAttendedInput!
) {
Expand Down Expand Up @@ -113,9 +116,9 @@ export const deleteSessionAttended = /* GraphQL */ `mutation DeleteSessionAttend
}
}
` as GeneratedMutation<
APITypes.DeleteSessionAttendedMutationVariables,
APITypes.DeleteSessionAttendedMutation
>;
APITypes.DeleteSessionAttendedMutationVariables,
APITypes.DeleteSessionAttendedMutation
>;
export const deleteTimer = /* GraphQL */ `mutation DeleteTimer(
$condition: ModelTimerConditionInput
$input: DeleteTimerInput!
Expand Down Expand Up @@ -160,7 +163,8 @@ export const deleteUser = /* GraphQL */ `mutation DeleteUser(
APITypes.DeleteUserMutationVariables,
APITypes.DeleteUserMutation
>;
export const updateSessionAttended = /* GraphQL */ `mutation UpdateSessionAttended(
export const updateSessionAttended =
/* GraphQL */ `mutation UpdateSessionAttended(
$condition: ModelSessionAttendedConditionInput
$input: UpdateSessionAttendedInput!
) {
Expand Down Expand Up @@ -189,9 +193,9 @@ export const updateSessionAttended = /* GraphQL */ `mutation UpdateSessionAttend
}
}
` as GeneratedMutation<
APITypes.UpdateSessionAttendedMutationVariables,
APITypes.UpdateSessionAttendedMutation
>;
APITypes.UpdateSessionAttendedMutationVariables,
APITypes.UpdateSessionAttendedMutation
>;
export const updateTimer = /* GraphQL */ `mutation UpdateTimer(
$condition: ModelTimerConditionInput
$input: UpdateTimerInput!
Expand Down
12 changes: 7 additions & 5 deletions amplify/auth/pre-sign-up/graphql/queries.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
/* tslint:disable */

/* eslint-disable */
// this is an auto generated file. This will be overwritten

import * as APITypes from "./API";

type GeneratedQuery<InputType, OutputType> = string & {
__generatedQueryInput: InputType;
__generatedQueryOutput: OutputType;
};

export const getSessionAttended = /* GraphQL */ `query GetSessionAttended($id: ID!) {
export const getSessionAttended =
/* GraphQL */ `query GetSessionAttended($id: ID!) {
getSessionAttended(id: $id) {
createdAt
date
Expand All @@ -34,9 +36,9 @@ export const getSessionAttended = /* GraphQL */ `query GetSessionAttended($id: I
}
}
` as GeneratedQuery<
APITypes.GetSessionAttendedQueryVariables,
APITypes.GetSessionAttendedQuery
>;
APITypes.GetSessionAttendedQueryVariables,
APITypes.GetSessionAttendedQuery
>;
export const getTimer = /* GraphQL */ `query GetTimer($id: ID!) {
getTimer(id: $id) {
createdAt
Expand Down
57 changes: 32 additions & 25 deletions amplify/auth/pre-sign-up/graphql/subscriptions.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
/* tslint:disable */

/* eslint-disable */
// this is an auto generated file. This will be overwritten

import * as APITypes from "./API";

type GeneratedSubscription<InputType, OutputType> = string & {
__generatedSubscriptionInput: InputType;
__generatedSubscriptionOutput: OutputType;
};

export const onCreateSessionAttended = /* GraphQL */ `subscription OnCreateSessionAttended(
export const onCreateSessionAttended =
/* GraphQL */ `subscription OnCreateSessionAttended(
$filter: ModelSubscriptionSessionAttendedFilterInput
) {
onCreateSessionAttended(filter: $filter) {
Expand Down Expand Up @@ -36,10 +38,11 @@ export const onCreateSessionAttended = /* GraphQL */ `subscription OnCreateSessi
}
}
` as GeneratedSubscription<
APITypes.OnCreateSessionAttendedSubscriptionVariables,
APITypes.OnCreateSessionAttendedSubscription
>;
export const onCreateTimer = /* GraphQL */ `subscription OnCreateTimer($filter: ModelSubscriptionTimerFilterInput) {
APITypes.OnCreateSessionAttendedSubscriptionVariables,
APITypes.OnCreateSessionAttendedSubscription
>;
export const onCreateTimer =
/* GraphQL */ `subscription OnCreateTimer($filter: ModelSubscriptionTimerFilterInput) {
onCreateTimer(filter: $filter) {
createdAt
id
Expand All @@ -50,9 +53,9 @@ export const onCreateTimer = /* GraphQL */ `subscription OnCreateTimer($filter:
}
}
` as GeneratedSubscription<
APITypes.OnCreateTimerSubscriptionVariables,
APITypes.OnCreateTimerSubscription
>;
APITypes.OnCreateTimerSubscriptionVariables,
APITypes.OnCreateTimerSubscription
>;
export const onCreateUser = /* GraphQL */ `subscription OnCreateUser(
$filter: ModelSubscriptionUserFilterInput
$profileOwner: String
Expand Down Expand Up @@ -80,7 +83,8 @@ export const onCreateUser = /* GraphQL */ `subscription OnCreateUser(
APITypes.OnCreateUserSubscriptionVariables,
APITypes.OnCreateUserSubscription
>;
export const onDeleteSessionAttended = /* GraphQL */ `subscription OnDeleteSessionAttended(
export const onDeleteSessionAttended =
/* GraphQL */ `subscription OnDeleteSessionAttended(
$filter: ModelSubscriptionSessionAttendedFilterInput
) {
onDeleteSessionAttended(filter: $filter) {
Expand Down Expand Up @@ -108,10 +112,11 @@ export const onDeleteSessionAttended = /* GraphQL */ `subscription OnDeleteSessi
}
}
` as GeneratedSubscription<
APITypes.OnDeleteSessionAttendedSubscriptionVariables,
APITypes.OnDeleteSessionAttendedSubscription
>;
export const onDeleteTimer = /* GraphQL */ `subscription OnDeleteTimer($filter: ModelSubscriptionTimerFilterInput) {
APITypes.OnDeleteSessionAttendedSubscriptionVariables,
APITypes.OnDeleteSessionAttendedSubscription
>;
export const onDeleteTimer =
/* GraphQL */ `subscription OnDeleteTimer($filter: ModelSubscriptionTimerFilterInput) {
onDeleteTimer(filter: $filter) {
createdAt
id
Expand All @@ -122,9 +127,9 @@ export const onDeleteTimer = /* GraphQL */ `subscription OnDeleteTimer($filter:
}
}
` as GeneratedSubscription<
APITypes.OnDeleteTimerSubscriptionVariables,
APITypes.OnDeleteTimerSubscription
>;
APITypes.OnDeleteTimerSubscriptionVariables,
APITypes.OnDeleteTimerSubscription
>;
export const onDeleteUser = /* GraphQL */ `subscription OnDeleteUser(
$filter: ModelSubscriptionUserFilterInput
$profileOwner: String
Expand Down Expand Up @@ -152,7 +157,8 @@ export const onDeleteUser = /* GraphQL */ `subscription OnDeleteUser(
APITypes.OnDeleteUserSubscriptionVariables,
APITypes.OnDeleteUserSubscription
>;
export const onUpdateSessionAttended = /* GraphQL */ `subscription OnUpdateSessionAttended(
export const onUpdateSessionAttended =
/* GraphQL */ `subscription OnUpdateSessionAttended(
$filter: ModelSubscriptionSessionAttendedFilterInput
) {
onUpdateSessionAttended(filter: $filter) {
Expand Down Expand Up @@ -180,10 +186,11 @@ export const onUpdateSessionAttended = /* GraphQL */ `subscription OnUpdateSessi
}
}
` as GeneratedSubscription<
APITypes.OnUpdateSessionAttendedSubscriptionVariables,
APITypes.OnUpdateSessionAttendedSubscription
>;
export const onUpdateTimer = /* GraphQL */ `subscription OnUpdateTimer($filter: ModelSubscriptionTimerFilterInput) {
APITypes.OnUpdateSessionAttendedSubscriptionVariables,
APITypes.OnUpdateSessionAttendedSubscription
>;
export const onUpdateTimer =
/* GraphQL */ `subscription OnUpdateTimer($filter: ModelSubscriptionTimerFilterInput) {
onUpdateTimer(filter: $filter) {
createdAt
id
Expand All @@ -194,9 +201,9 @@ export const onUpdateTimer = /* GraphQL */ `subscription OnUpdateTimer($filter:
}
}
` as GeneratedSubscription<
APITypes.OnUpdateTimerSubscriptionVariables,
APITypes.OnUpdateTimerSubscription
>;
APITypes.OnUpdateTimerSubscriptionVariables,
APITypes.OnUpdateTimerSubscription
>;
export const onUpdateUser = /* GraphQL */ `subscription OnUpdateUser(
$filter: ModelSubscriptionUserFilterInput
$profileOwner: String
Expand Down
Loading

0 comments on commit 507c655

Please sign in to comment.