@@ -66,7 +66,7 @@ export type Directory = Node & {
66
66
readonly gid : Maybe < Scalars [ 'Int' ] > ;
67
67
readonly rdev : Maybe < Scalars [ 'Int' ] > ;
68
68
readonly blksize : Maybe < Scalars [ 'Int' ] > ;
69
- readonly ino : Maybe < Scalars [ 'Float ' ] > ;
69
+ readonly ino : Maybe < Scalars [ 'Int ' ] > ;
70
70
readonly blocks : Maybe < Scalars [ 'Int' ] > ;
71
71
readonly atimeMs : Maybe < Scalars [ 'Float' ] > ;
72
72
readonly mtimeMs : Maybe < Scalars [ 'Float' ] > ;
@@ -309,7 +309,7 @@ export type DirectoryFilterInput = {
309
309
readonly gid : Maybe < IntQueryOperatorInput > ;
310
310
readonly rdev : Maybe < IntQueryOperatorInput > ;
311
311
readonly blksize : Maybe < IntQueryOperatorInput > ;
312
- readonly ino : Maybe < FloatQueryOperatorInput > ;
312
+ readonly ino : Maybe < IntQueryOperatorInput > ;
313
313
readonly blocks : Maybe < IntQueryOperatorInput > ;
314
314
readonly atimeMs : Maybe < FloatQueryOperatorInput > ;
315
315
readonly mtimeMs : Maybe < FloatQueryOperatorInput > ;
@@ -369,7 +369,7 @@ export type File = Node & {
369
369
readonly gid : Maybe < Scalars [ 'Int' ] > ;
370
370
readonly rdev : Maybe < Scalars [ 'Int' ] > ;
371
371
readonly blksize : Maybe < Scalars [ 'Int' ] > ;
372
- readonly ino : Maybe < Scalars [ 'Float ' ] > ;
372
+ readonly ino : Maybe < Scalars [ 'Int ' ] > ;
373
373
readonly blocks : Maybe < Scalars [ 'Int' ] > ;
374
374
readonly atimeMs : Maybe < Scalars [ 'Float' ] > ;
375
375
readonly mtimeMs : Maybe < Scalars [ 'Float' ] > ;
@@ -617,7 +617,7 @@ export type FileFilterInput = {
617
617
readonly gid : Maybe < IntQueryOperatorInput > ;
618
618
readonly rdev : Maybe < IntQueryOperatorInput > ;
619
619
readonly blksize : Maybe < IntQueryOperatorInput > ;
620
- readonly ino : Maybe < FloatQueryOperatorInput > ;
620
+ readonly ino : Maybe < IntQueryOperatorInput > ;
621
621
readonly blocks : Maybe < IntQueryOperatorInput > ;
622
622
readonly atimeMs : Maybe < FloatQueryOperatorInput > ;
623
623
readonly mtimeMs : Maybe < FloatQueryOperatorInput > ;
@@ -1332,10 +1332,10 @@ export enum MdxFieldsEnum {
1332
1332
FrontmatterVideoId = 'frontmatter___videoId' ,
1333
1333
FrontmatterParent = 'frontmatter____PARENT' ,
1334
1334
FrontmatterDuration = 'frontmatter___duration' ,
1335
- FrontmatterTutorialTitle = 'frontmatter___tutorialTitle' ,
1336
- FrontmatterBanner = 'frontmatter___banner' ,
1337
1335
FrontmatterVideoAuthor = 'frontmatter___videoAuthor' ,
1338
1336
FrontmatterDraft = 'frontmatter___draft' ,
1337
+ FrontmatterTutorialTitle = 'frontmatter___tutorialTitle' ,
1338
+ FrontmatterBanner = 'frontmatter___banner' ,
1339
1339
RawBody = 'rawBody' ,
1340
1340
FileAbsolutePath = 'fileAbsolutePath' ,
1341
1341
CodeBody = 'code___body' ,
@@ -1381,10 +1381,10 @@ export type MdxFrontmatter = {
1381
1381
readonly videoId : Maybe < Scalars [ 'String' ] > ;
1382
1382
readonly _PARENT : Maybe < Scalars [ 'String' ] > ;
1383
1383
readonly duration : Maybe < Scalars [ 'Int' ] > ;
1384
- readonly tutorialTitle : Maybe < Scalars [ 'String' ] > ;
1385
- readonly banner : Maybe < Scalars [ 'String' ] > ;
1386
1384
readonly videoAuthor : Maybe < Scalars [ 'String' ] > ;
1387
1385
readonly draft : Maybe < Scalars [ 'Boolean' ] > ;
1386
+ readonly tutorialTitle : Maybe < Scalars [ 'String' ] > ;
1387
+ readonly banner : Maybe < Scalars [ 'String' ] > ;
1388
1388
} ;
1389
1389
1390
1390
export type MdxFrontmatterFilterInput = {
@@ -1399,10 +1399,10 @@ export type MdxFrontmatterFilterInput = {
1399
1399
readonly videoId : Maybe < StringQueryOperatorInput > ;
1400
1400
readonly _PARENT : Maybe < StringQueryOperatorInput > ;
1401
1401
readonly duration : Maybe < IntQueryOperatorInput > ;
1402
- readonly tutorialTitle : Maybe < StringQueryOperatorInput > ;
1403
- readonly banner : Maybe < StringQueryOperatorInput > ;
1404
1402
readonly videoAuthor : Maybe < StringQueryOperatorInput > ;
1405
1403
readonly draft : Maybe < BooleanQueryOperatorInput > ;
1404
+ readonly tutorialTitle : Maybe < StringQueryOperatorInput > ;
1405
+ readonly banner : Maybe < StringQueryOperatorInput > ;
1406
1406
} ;
1407
1407
1408
1408
export type MdxGroupConnection = {
@@ -1616,7 +1616,7 @@ export type QueryFileArgs = {
1616
1616
gid : Maybe < IntQueryOperatorInput > ;
1617
1617
rdev : Maybe < IntQueryOperatorInput > ;
1618
1618
blksize : Maybe < IntQueryOperatorInput > ;
1619
- ino : Maybe < FloatQueryOperatorInput > ;
1619
+ ino : Maybe < IntQueryOperatorInput > ;
1620
1620
blocks : Maybe < IntQueryOperatorInput > ;
1621
1621
atimeMs : Maybe < FloatQueryOperatorInput > ;
1622
1622
mtimeMs : Maybe < FloatQueryOperatorInput > ;
@@ -1732,7 +1732,7 @@ export type QueryDirectoryArgs = {
1732
1732
gid : Maybe < IntQueryOperatorInput > ;
1733
1733
rdev : Maybe < IntQueryOperatorInput > ;
1734
1734
blksize : Maybe < IntQueryOperatorInput > ;
1735
- ino : Maybe < FloatQueryOperatorInput > ;
1735
+ ino : Maybe < IntQueryOperatorInput > ;
1736
1736
blocks : Maybe < IntQueryOperatorInput > ;
1737
1737
atimeMs : Maybe < FloatQueryOperatorInput > ;
1738
1738
mtimeMs : Maybe < FloatQueryOperatorInput > ;
@@ -2746,20 +2746,16 @@ export type LayoutInformationQuery = {
2746
2746
} > ;
2747
2747
} ;
2748
2748
2749
- export type AuthenticateUserMutationVariables = {
2750
- code : Scalars [ 'String' ] ;
2751
- } ;
2752
-
2753
- export type AuthenticateUserMutation = {
2754
- readonly authenticate : Maybe < Pick < AuthenticateUserPayload , 'token' > > ;
2755
- } ;
2749
+ export type CommunityTutorialQueryQueryVariables = { } ;
2756
2750
2757
- export type CurrentUserQueryVariables = { } ;
2758
-
2759
- export type CurrentUserQuery = {
2760
- readonly viewer : Maybe <
2761
- Pick < Viewer , 'id' > & {
2762
- readonly user : Pick < User , 'id' | 'name' | 'avatarUrl' | 'githubHandle' > ;
2763
- }
2764
- > ;
2751
+ export type CommunityTutorialQueryQuery = {
2752
+ readonly tutorials : Maybe < {
2753
+ readonly edges : ReadonlyArray < {
2754
+ readonly node : Pick < Mdx , 'id' | 'fileAbsolutePath' > & {
2755
+ readonly frontmatter : Maybe <
2756
+ Pick < MdxFrontmatter , 'tutorialTitle' | 'description' >
2757
+ > ;
2758
+ } ;
2759
+ } > ;
2760
+ } > ;
2765
2761
} ;
0 commit comments