File tree Expand file tree Collapse file tree 3 files changed +47
-43
lines changed Expand file tree Collapse file tree 3 files changed +47
-43
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# hive
22
3+ ## 8.5.1
4+
5+ ### Patch Changes
6+
7+ - [ #7177 ] ( https://github.com/graphql-hive/console/pull/7177 )
8+ [ ` 1f7f195 ` ] ( https://github.com/graphql-hive/console/commit/1f7f1951b2b1ef76d0853a6588e39458e5e1a982 )
9+ Thanks [ @n1ru4l ] ( https://github.com/n1ru4l ) ! - Fix issue with native
10+ federation public SDL generation around inaccessible interfaces.
11+
12+ ** Example supergraph:**
13+
14+ ```
15+ schema
16+ @link(
17+ url: "https://specs.apollo.dev/federation/v2.3"
18+ import: ["@inaccessible"]
19+ ) {
20+ query: Query
21+ }
22+
23+ type Query {
24+ user: User!
25+ }
26+
27+ interface Node @inaccessible {
28+ id: ID!
29+ }
30+
31+ type User implements Node {
32+ id: ID!
33+ }
34+ ```
35+
36+ ** Public Schema SDL output:**
37+
38+ ``` diff
39+ type Query {
40+ user: User!
41+ }
42+
43+ - type User implements Node {
44+ + type User {
45+ id: ID!
46+ }
47+ ```
48+
349## 8.5.0
450
551### Minor Changes
Original file line number Diff line number Diff line change 11{
22 "name" : " hive" ,
3- "version" : " 8.5.0 " ,
3+ "version" : " 8.5.1 " ,
44 "private" : true ,
55 "scripts" : {
66 "generate" : " tsx generate.ts" ,
You can’t perform that action at this time.
0 commit comments