ProductMilestones
Get information about milestones of a certain product.
Querying 'SELECT * FROM ProductMilestones' could be slow because it retrieves all ProductIDs and then makes separate calls for each of them to get the ProductMilestones. In that case use 'IN' filtering for better performance.
Columns
Name | Type | Description |
Id [KEY] | Int | An integer ID uniquely identifying this milestone. |
Name | String | The name of the milestone of the product. |
IsActive | Boolean | A boolean indicating if this milestone of the product is active. |
SortKey | Int | The sorting key of this milestone of the product. |
ProductId | Int | The ID of the product this milestone belongs to. |
ProductName | String | The name of the product this milestone belongs to. |