With Portfolio (and I know most ppl here don't have access to that)...
When I create a project board from a portfolio board, how do I know which project board a portfolio item is connected to, unless there's already an item in the project board?
Once there's an item in the project board, they are automatically connected and I can access them using this:
query linkedItems($portfolioBoardItemId: ID!) {
items(ids: [ $portfolioBoardItemId ]) {
column_values(types: [ board_relation ]) {
id
column {
title
settings # contains a list of *all* connected project boards
}
... on BoardRelationValue {
id
linked_items {
id
name
board { # Project board
id
name
type
}
}
}
}
}
}...but if there are no items on the project board, how do I know which portfolio item is linked to which project board?
It's stored somewhere, because all the new items in the project board automatically link through. but where?
