Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions graphql_api/types/path_contents/path_content.graphql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
interface PathContent {
name: String!
path: String
path: String!
hits: Int!
misses: Int!
partials: Int!
Expand All @@ -10,7 +10,7 @@ interface PathContent {

type PathContentFile implements PathContent {
name: String!
path: String
path: String!
hits: Int!
misses: Int!
partials: Int!
Expand All @@ -21,7 +21,7 @@ type PathContentFile implements PathContent {

type PathContentDir implements PathContent {
name: String!
path: String
path: String!
hits: Int!
misses: Int!
partials: Int!
Expand Down