diff --git a/schema.graphql b/schema.graphql index 6ac1d7462..3964edc2d 100644 --- a/schema.graphql +++ b/schema.graphql @@ -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! diff --git a/schema.json b/schema.json index 6d7335705..267c9bd7b 100644 --- a/schema.json +++ b/schema.json @@ -942,6 +942,11 @@ "name": "Language", "ofType": null }, + { + "kind": "OBJECT", + "name": "License", + "ofType": null + }, { "kind": "OBJECT", "name": "LockedEvent", @@ -23290,7 +23295,13 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null },