(source projectQueryWithoutQueryableItems)
| 250 | } |
| 251 | |
| 252 | func newProjectFromQueryWithoutItemsQuery(source projectQueryWithoutQueryableItems) *Project { |
| 253 | project := newProjectFromQueryBase(source.projectQueryBase) |
| 254 | project.Items.PageInfo = source.Items.PageInfo |
| 255 | project.Items.TotalCount = source.Items.TotalCount |
| 256 | project.Items.Nodes = source.Items.Nodes |
| 257 | return project |
| 258 | } |
| 259 | |
| 260 | func (p Project) DetailedItems() map[string]interface{} { |
| 261 | return map[string]interface{}{ |
no test coverage detected