For discussing the development and usage of Checkout UI extensions, post-purchase extensions, web pixels, Customer Accounts UI extensions, and POS UI extensions
I have asked this before but there was no response and I'm positive there's a solution that I haven't found yet.
I have noticed that post-purchase offer apps are able to check if their app is active in the checkout settings (in Admin > Settings). It is possible for the app to not be active if there is another post-purchase app installed.
I have crawled through every GraphQL object there is in the list of the docs and anything on on how to check for it. Can someone please point me in the right direction?
Solved! Go to the solution
This is an accepted solution.
Use this graphql query :
query CheckPostPurchaseApp {
app {
isPostPurchaseAppInUse
}
}
Did you find ?
Nope sorry
This is an accepted solution.
Use this graphql query :
query CheckPostPurchaseApp {
app {
isPostPurchaseAppInUse
}
}
Thank you this works!!