|
5 | 5 | /* prettier-ignore */ |
6 | 6 | import type * as Types from '#graphql/client'; |
7 | 7 |
|
8 | | -export type CreateUserMutationVariables = Types.Exact<{ |
9 | | - input: Types.CreateUserInput; |
10 | | -}>; |
11 | | - |
12 | | - |
13 | | -export type CreateUserMutation = { __typename?: 'Mutation', createUser: { __typename?: 'User', id: string, name: string, email: string, createdAt: Date } }; |
14 | | - |
15 | | -export type UpdateUserMutationVariables = Types.Exact<{ |
16 | | - id: Types.Scalars['ID']['input']; |
17 | | - input: Types.UpdateUserInput; |
18 | | -}>; |
19 | | - |
20 | | - |
21 | | -export type UpdateUserMutation = { __typename?: 'Mutation', updateUser: { __typename?: 'User', id: string, name: string, email: string, createdAt: Date } }; |
22 | | - |
23 | | -export type DeleteUserMutationVariables = Types.Exact<{ |
24 | | - id: Types.Scalars['ID']['input']; |
25 | | -}>; |
26 | | - |
27 | | - |
28 | | -export type DeleteUserMutation = { __typename?: 'Mutation', deleteUser: boolean }; |
29 | | - |
30 | | -export type GetUsersQueryVariables = Types.Exact<{ [key: string]: never; }>; |
31 | | - |
32 | | - |
33 | | -export type GetUsersQuery = { __typename?: 'Query', users: Array<{ __typename?: 'User', id: string, name: string, email: string, createdAt: Date }> }; |
34 | | - |
35 | | -export type GetUserQueryVariables = Types.Exact<{ |
36 | | - id: Types.Scalars['ID']['input']; |
37 | | -}>; |
38 | | - |
39 | | - |
40 | | -export type GetUserQuery = { __typename?: 'Query', user?: { __typename?: 'User', id: string, name: string, email: string, createdAt: Date } | null }; |
41 | | - |
42 | 8 |
|
43 | 9 | export const CreateUserDocument = /*#__PURE__*/ ` |
44 | 10 | mutation CreateUser($input: CreateUserInput!) { |
|
0 commit comments