import { gql } from "@apollo/client" import * as Apollo from "@apollo/client" export type Maybe = T | null; export type Exact = { [K in keyof T]: T[K] }; export type MakeOptional = Omit & { [SubKey in K]?: Maybe }; export type MakeMaybe = Omit & { [SubKey in K]: Maybe }; const defaultOptions = {} /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { ID: string; String: string; Boolean: boolean; Int: number; Float: number; }; /** Represents a directory */ export type Directory = { __typename?: "Directory"; directorys?: Maybe>>; files?: Maybe>>; id: Scalars["ID"]; name?: Maybe; parent?: Maybe; }; /** Represents a file, not a directory */ export type File = { __typename?: "File"; contentType?: Maybe; etag?: Maybe; /** The uniqe ID of the file. Represents the path and the s3 key. */ id: Scalars["ID"]; name?: Maybe; parent?: Maybe; size: Scalars["Int"]; }; export type RootQuery = { __typename?: "RootQuery"; directorys: Array>; file?: Maybe; files: Array>; }; export type RootQueryDirectorysArgs = { path: Scalars["String"]; }; export type RootQueryFileArgs = { id: Scalars["ID"]; }; export type RootQueryFilesArgs = { path: Scalars["String"]; }; export type OpenDirQueryVariables = Exact<{ path: Scalars["String"]; }>; export type OpenDirQuery = ( { __typename?: "RootQuery" } & { files: Array )>>, directorys: Array )>> } ); export const OpenDirDocument = gql` query openDir($path: String!) { files(path: $path) { id name size } directorys(path: $path) { id name } } ` /** * __useOpenDirQuery__ * * To run a query within a React component, call `useOpenDirQuery` and pass it any options that fit your needs. * When your component renders, `useOpenDirQuery` returns an object from Apollo Client that contains loading, error, and data properties * you can use to render your UI. * * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; * * @example * const { data, loading, error } = useOpenDirQuery({ * variables: { * path: // value for 'path' * }, * }); */ export function useOpenDirQuery(baseOptions: Apollo.QueryHookOptions) { const options = {...defaultOptions, ...baseOptions} return Apollo.useQuery(OpenDirDocument, options) } export function useOpenDirLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions) { const options = {...defaultOptions, ...baseOptions} return Apollo.useLazyQuery(OpenDirDocument, options) } export type OpenDirQueryHookResult = ReturnType; export type OpenDirLazyQueryHookResult = ReturnType; export type OpenDirQueryResult = Apollo.QueryResult;