Skip to content

Commit 9c2c397

Browse files
authoredNov 19, 2019
feat: Repository#hasProjectsEnabled (#230)
2 parents cea2ad5 + 726be63 commit 9c2c397

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed
 

Diff for: ‎schema.graphql

+10
Original file line numberDiff line numberDiff line change
@@ -26093,6 +26093,11 @@ type Repository implements Node & ProjectOwner & RegistryPackageOwner & Registry
2609326093
"""
2609426094
hasIssuesEnabled: Boolean!
2609526095

26096+
"""
26097+
Indicates if the repository has the Projects feature enabled.
26098+
"""
26099+
hasProjectsEnabled: Boolean!
26100+
2609626101
"""
2609726102
Indicates if the repository has wiki feature enabled.
2609826103
"""
@@ -27122,6 +27127,11 @@ interface RepositoryInfo {
2712227127
"""
2712327128
hasIssuesEnabled: Boolean!
2712427129

27130+
"""
27131+
Indicates if the repository has the Projects feature enabled.
27132+
"""
27133+
hasProjectsEnabled: Boolean!
27134+
2712527135
"""
2712627136
Indicates if the repository has wiki feature enabled.
2712727137
"""

Diff for: ‎schema.json

+32
Original file line numberDiff line numberDiff line change
@@ -6751,6 +6751,22 @@
67516751
"isDeprecated": false,
67526752
"deprecationReason": null
67536753
},
6754+
{
6755+
"name": "hasProjectsEnabled",
6756+
"description": "Indicates if the repository has the Projects feature enabled.",
6757+
"args": [],
6758+
"type": {
6759+
"kind": "NON_NULL",
6760+
"name": null,
6761+
"ofType": {
6762+
"kind": "SCALAR",
6763+
"name": "Boolean",
6764+
"ofType": null
6765+
}
6766+
},
6767+
"isDeprecated": false,
6768+
"deprecationReason": null
6769+
},
67546770
{
67556771
"name": "hasWikiEnabled",
67566772
"description": "Indicates if the repository has wiki feature enabled.",
@@ -23649,6 +23665,22 @@
2364923665
"isDeprecated": false,
2365023666
"deprecationReason": null
2365123667
},
23668+
{
23669+
"name": "hasProjectsEnabled",
23670+
"description": "Indicates if the repository has the Projects feature enabled.",
23671+
"args": [],
23672+
"type": {
23673+
"kind": "NON_NULL",
23674+
"name": null,
23675+
"ofType": {
23676+
"kind": "SCALAR",
23677+
"name": "Boolean",
23678+
"ofType": null
23679+
}
23680+
},
23681+
"isDeprecated": false,
23682+
"deprecationReason": null
23683+
},
2365223684
{
2365323685
"name": "hasWikiEnabled",
2365423686
"description": "Indicates if the repository has wiki feature enabled.",

0 commit comments

Comments
 (0)
Please sign in to comment.