@@ -1378,8 +1378,11 @@ type GithubDataSortInput = {
1378
1378
/** Define schema for custom GithubRepo nodes */
1379
1379
type GithubRepo = Node & {
1380
1380
readonly category : ProjectCategory ;
1381
+ /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */
1381
1382
readonly childMarkdownRemark : Maybe < MarkdownRemark > ;
1382
1383
readonly children : ReadonlyArray < Node > ;
1384
+ /** Returns all children nodes filtered by type MarkdownRemark */
1385
+ readonly childrenMarkdownRemark : Maybe < ReadonlyArray < Maybe < MarkdownRemark > > > ;
1383
1386
readonly createdAt : Scalars [ 'Date' ] ;
1384
1387
readonly description : Scalars [ 'String' ] ;
1385
1388
readonly descriptionHtml : Maybe < Scalars [ 'String' ] > ;
@@ -1453,6 +1456,7 @@ type GithubRepoFieldSelector = {
1453
1456
readonly category : InputMaybe < ProjectCategoryFieldSelector > ;
1454
1457
readonly childMarkdownRemark : InputMaybe < MarkdownRemarkFieldSelector > ;
1455
1458
readonly children : InputMaybe < NodeFieldSelector > ;
1459
+ readonly childrenMarkdownRemark : InputMaybe < MarkdownRemarkFieldSelector > ;
1456
1460
readonly createdAt : InputMaybe < FieldSelectorEnum > ;
1457
1461
readonly description : InputMaybe < FieldSelectorEnum > ;
1458
1462
readonly descriptionHtml : InputMaybe < FieldSelectorEnum > ;
@@ -1481,6 +1485,7 @@ type GithubRepoFilterInput = {
1481
1485
readonly category : InputMaybe < ProjectCategoryFilterInput > ;
1482
1486
readonly childMarkdownRemark : InputMaybe < MarkdownRemarkFilterInput > ;
1483
1487
readonly children : InputMaybe < NodeFilterListInput > ;
1488
+ readonly childrenMarkdownRemark : InputMaybe < MarkdownRemarkFilterListInput > ;
1484
1489
readonly createdAt : InputMaybe < DateQueryOperatorInput > ;
1485
1490
readonly description : InputMaybe < StringQueryOperatorInput > ;
1486
1491
readonly descriptionHtml : InputMaybe < StringQueryOperatorInput > ;
@@ -1550,6 +1555,7 @@ type GithubRepoSortInput = {
1550
1555
readonly category : InputMaybe < ProjectCategorySortInput > ;
1551
1556
readonly childMarkdownRemark : InputMaybe < MarkdownRemarkSortInput > ;
1552
1557
readonly children : InputMaybe < NodeSortInput > ;
1558
+ readonly childrenMarkdownRemark : InputMaybe < MarkdownRemarkSortInput > ;
1553
1559
readonly createdAt : InputMaybe < SortOrderEnum > ;
1554
1560
readonly description : InputMaybe < SortOrderEnum > ;
1555
1561
readonly descriptionHtml : InputMaybe < SortOrderEnum > ;
@@ -2175,6 +2181,7 @@ type Query_githubRepoArgs = {
2175
2181
category : InputMaybe < ProjectCategoryFilterInput > ;
2176
2182
childMarkdownRemark : InputMaybe < MarkdownRemarkFilterInput > ;
2177
2183
children : InputMaybe < NodeFilterListInput > ;
2184
+ childrenMarkdownRemark : InputMaybe < MarkdownRemarkFilterListInput > ;
2178
2185
createdAt : InputMaybe < DateQueryOperatorInput > ;
2179
2186
description : InputMaybe < StringQueryOperatorInput > ;
2180
2187
descriptionHtml : InputMaybe < StringQueryOperatorInput > ;
0 commit comments