Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit f4f7dc8

Browse files
fix: Make PathContent's path non-nullable (#1174)
1 parent 8ed03b4 commit f4f7dc8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

graphql_api/types/path_contents/path_content.graphql

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
interface PathContent {
22
name: String!
3-
path: String
3+
path: String!
44
hits: Int!
55
misses: Int!
66
partials: Int!
@@ -10,7 +10,7 @@ interface PathContent {
1010

1111
type PathContentFile implements PathContent {
1212
name: String!
13-
path: String
13+
path: String!
1414
hits: Int!
1515
misses: Int!
1616
partials: Int!
@@ -21,7 +21,7 @@ type PathContentFile implements PathContent {
2121

2222
type PathContentDir implements PathContent {
2323
name: String!
24-
path: String
24+
path: String!
2525
hits: Int!
2626
misses: Int!
2727
partials: Int!

0 commit comments

Comments
 (0)