
RomanM asked a question.
Calculated Support Lifecycle Stage Name
I need to import installed software with "Calculated Support Lifecycle Stage Name".
Is "Calculated Support Lifecycle Stage Name" available in graphql?
Do you have any idea where to find it?
@RomanM​
I would recommend you to use Data Explorer for use cases where you have challenges finding an appropriate GraphQL query. E.g. I quickly used Data Explorer based on your question above:
query {
software(limit: 10) {
name
lifecycle {
endOfLifeDateCalculated
generalAvailabilityDateCalculated
obsoleteDateCalculated
supportStages {
name
}
}
}
}
Thanks,
John Sorensen
I really appreciate your help on this but I already call the above. Unfortunately it does not return the same values as "Calculated Support Lifecycle Stage Name".
My manager wanted me to import the exact value but I cannot find that anywhere. I start to suspect that it's either not exposed or this is calculated on the fly from existing values for UI only.
@RomanM​
You can try to add policyLabel and stageLabel attributes in the supportStages part of the query and verify if either of these matches your report column values. (I tried the report approach and didn't find discrepancies in my quick test against the original query...)
Thanks,
John Sorensen
It looks like it shows these fields for support stage label and policy label. Doesn't seem like there's anything that maps to this
I wasn't able to find these fields in Data Explorer
@RomanM​ / @henryy​
Then I would recommend that you create a support case with Flexera Support and request this particular attribute to be added for GraphQL reporting.
Thanks,
John Sorensen