Skip to main content

I want to retrieve the following informations for all fact sheets, that belong to a specific main ownership:

  • Application Name
  • Quality Seal
  • Tags
  • Application Owner
  • Current Lifecycle

Can anyone tell me how i get the query running?

Hello @PascalDev 

Based on your question you are looking for a query like the following:

 

query AllFactSheets {
allFactSheets(factSheetType: Application) {
edges {
node {
id
name
... on Application {
lxState
lifecycle {
asString
phases {
phase
startDate
}
}
tags {
name
}
subscriptions {
edges {
node {
user {
displayName
role
status
}
}
}
}
}
}
}
}
}

You can find further examples and information by visiting our developer documentation.


Hi @PascalDev

What do you mean by „main ownership“? Is this a subscription, a tag, an organization / user group, or something else?


Reply