Have your say in Community Polls: What was/is your greatest motivation to start your own business?
Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

Re: How To Check If Post-Purchase App Is Enabled In Checkout Settings

Solved

How To Check If Post-Purchase App Is Enabled In Checkout Settings

Danh11
Shopify Partner
87 2 40

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?

Accepted Solution (1)
rohit720
Shopify Partner
11 1 5

This is an accepted solution.

Use this graphql query : 

query CheckPostPurchaseApp {
      app {
        isPostPurchaseAppInUse
      }
    }

View solution in original post

Replies 4 (4)

rohit720
Shopify Partner
11 1 5

Did you find ?

Danh11
Shopify Partner
87 2 40

Nope sorry

rohit720
Shopify Partner
11 1 5

This is an accepted solution.

Use this graphql query : 

query CheckPostPurchaseApp {
      app {
        isPostPurchaseAppInUse
      }
    }
Danh11
Shopify Partner
87 2 40

Thank you this works!!