From 373afbe6efe0af711b0853a6978e4919a7c7864a Mon Sep 17 00:00:00 2001 From: Octokit Bot <33075676+octokitbot@users.noreply.github.com> Date: Fri, 18 May 2018 03:03:02 -0700 Subject: [PATCH 1/2] updated schema.graphql --- schema.graphql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/schema.graphql b/schema.graphql index e5ae8edec..6ac1d7462 100644 --- a/schema.graphql +++ b/schema.graphql @@ -2731,12 +2731,13 @@ type LockedEvent implements Node { } # A public description of a Marketplace category. -type MarketplaceCategory { +type MarketplaceCategory implements Node { # The category's description. description: String # The technical description of how apps listed in this category work with GitHub. howItWorks: String + id: ID! # The category's name. name: String! From 0e0e29b446190e0bd4dcdf27d85190ed8325380e Mon Sep 17 00:00:00 2001 From: Octokit Bot <33075676+octokitbot@users.noreply.github.com> Date: Fri, 18 May 2018 03:03:04 -0700 Subject: [PATCH 2/2] updated schema.json --- schema.json | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/schema.json b/schema.json index 7cc4e76ce..6d7335705 100644 --- a/schema.json +++ b/schema.json @@ -947,6 +947,11 @@ "name": "LockedEvent", "ofType": null }, + { + "kind": "OBJECT", + "name": "MarketplaceCategory", + "ofType": null + }, { "kind": "OBJECT", "name": "MarketplaceListing", @@ -18332,6 +18337,22 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "name", "description": "The category's name.", @@ -18430,7 +18451,13 @@ } ], "inputFields": null, - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], "enumValues": null, "possibleTypes": null },