@@ -1332,10 +1332,10 @@ export enum MdxFieldsEnum {
1332
1332
FrontmatterVideoId = 'frontmatter___videoId' ,
1333
1333
FrontmatterParent = 'frontmatter____PARENT' ,
1334
1334
FrontmatterDuration = 'frontmatter___duration' ,
1335
- FrontmatterVideoAuthor = 'frontmatter___videoAuthor' ,
1336
- FrontmatterDraft = 'frontmatter___draft' ,
1337
1335
FrontmatterTutorialTitle = 'frontmatter___tutorialTitle' ,
1338
1336
FrontmatterBanner = 'frontmatter___banner' ,
1337
+ FrontmatterVideoAuthor = 'frontmatter___videoAuthor' ,
1338
+ FrontmatterDraft = 'frontmatter___draft' ,
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 videoAuthor : Maybe < Scalars [ 'String' ] > ;
1385
- readonly draft : Maybe < Scalars [ 'Boolean' ] > ;
1386
1384
readonly tutorialTitle : Maybe < Scalars [ 'String' ] > ;
1387
1385
readonly banner : Maybe < Scalars [ 'String' ] > ;
1386
+ readonly videoAuthor : Maybe < Scalars [ 'String' ] > ;
1387
+ readonly draft : Maybe < Scalars [ 'Boolean' ] > ;
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 videoAuthor : Maybe < StringQueryOperatorInput > ;
1403
- readonly draft : Maybe < BooleanQueryOperatorInput > ;
1404
1402
readonly tutorialTitle : Maybe < StringQueryOperatorInput > ;
1405
1403
readonly banner : Maybe < StringQueryOperatorInput > ;
1404
+ readonly videoAuthor : Maybe < StringQueryOperatorInput > ;
1405
+ readonly draft : Maybe < BooleanQueryOperatorInput > ;
1406
1406
} ;
1407
1407
1408
1408
export type MdxGroupConnection = {
@@ -2759,3 +2759,52 @@ export type CommunityTutorialQueryQuery = {
2759
2759
} > ;
2760
2760
} > ;
2761
2761
} ;
2762
+
2763
+ export type TutorialMdxQueryVariables = {
2764
+ id : Scalars [ 'String' ] ;
2765
+ folderRegex : Maybe < Scalars [ 'String' ] > ;
2766
+ } ;
2767
+
2768
+ export type TutorialMdxQuery = {
2769
+ readonly mdx : Maybe <
2770
+ Pick < Mdx , 'id' > & {
2771
+ readonly code : Maybe < Pick < MdxCodeMdx , 'body' > > ;
2772
+ readonly frontmatter : Maybe < Pick < MdxFrontmatter , 'path' | 'pageTitle' > > ;
2773
+ }
2774
+ > ;
2775
+ readonly pageTitles : Maybe < {
2776
+ readonly edges : ReadonlyArray < {
2777
+ readonly node : Pick < Mdx , 'id' > & {
2778
+ readonly frontmatter : Maybe < Pick < MdxFrontmatter , 'pageTitle' > > ;
2779
+ } ;
2780
+ } > ;
2781
+ } > ;
2782
+ readonly tutorialTitle : Maybe < {
2783
+ readonly frontmatter : Maybe < Pick < MdxFrontmatter , 'tutorialTitle' > > ;
2784
+ } > ;
2785
+ } ;
2786
+
2787
+ export type TutorialOverviewQueryVariables = {
2788
+ folderRegex : Maybe < Scalars [ 'String' ] > ;
2789
+ } ;
2790
+
2791
+ export type TutorialOverviewQuery = {
2792
+ readonly allMdx : Maybe <
2793
+ Pick < MdxConnection , 'totalCount' > & {
2794
+ readonly edges : ReadonlyArray < {
2795
+ readonly node : Pick < Mdx , 'id' | 'fileAbsolutePath' > & {
2796
+ readonly frontmatter : Maybe <
2797
+ Pick < MdxFrontmatter , 'pageTitle' | 'description' >
2798
+ > ;
2799
+ } ;
2800
+ } > ;
2801
+ }
2802
+ > ;
2803
+ readonly overview : Maybe <
2804
+ Pick < Mdx , 'id' > & {
2805
+ readonly frontmatter : Maybe <
2806
+ Pick < MdxFrontmatter , 'tutorialTitle' | 'banner' | 'description' >
2807
+ > ;
2808
+ }
2809
+ > ;
2810
+ } ;
0 commit comments