Commit 8bf13f6d authored by Sean McGivern's avatar Sean McGivern

Merge branch '299489-over-10-of-graphql-descriptions-are-missing-tree-type-enum' into 'master'

Add descriptions for Tree::TypeEnum

See merge request gitlab-org/gitlab!60150
parents c5214dbc 0a6b1649
......@@ -6,9 +6,9 @@ module Types
graphql_name 'EntryType'
description 'Type of a tree entry'
value 'tree', value: :tree
value 'blob', value: :blob
value 'commit', value: :commit
value 'tree', description: 'Directory tree type', value: :tree
value 'blob', description: 'File tree type', value: :blob
value 'commit', description: 'Commit tree type', value: :commit
end
end
end
......@@ -13456,9 +13456,9 @@ Type of a tree entry.
| Value | Description |
| ----- | ----------- |
| <a id="entrytypeblob"></a>`blob` | |
| <a id="entrytypecommit"></a>`commit` | |
| <a id="entrytypetree"></a>`tree` | |
| <a id="entrytypeblob"></a>`blob` | File tree type. |
| <a id="entrytypecommit"></a>`commit` | Commit tree type. |
| <a id="entrytypetree"></a>`tree` | Directory tree type. |
### `EpicSort`
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment