Skip to content

Commit

Permalink
feat: License implements Node (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
octokitbot authored and gr2m committed May 19, 2018
1 parent 954bd1d commit 85b948d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -2612,7 +2612,7 @@ enum LanguageOrderField {
}

# A respository's open source license
type License {
type License implements Node {
# The full text of the license
body: String!

Expand Down
13 changes: 12 additions & 1 deletion schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -942,6 +942,11 @@
"name": "Language",
"ofType": null
},
{
"kind": "OBJECT",
"name": "License",
"ofType": null
},
{
"kind": "OBJECT",
"name": "LockedEvent",
Expand Down Expand Up @@ -23290,7 +23295,13 @@
}
],
"inputFields": null,
"interfaces": [],
"interfaces": [
{
"kind": "INTERFACE",
"name": "Node",
"ofType": null
}
],
"enumValues": null,
"possibleTypes": null
},
Expand Down

0 comments on commit 85b948d

Please sign in to comment.