getting app name by app_id

getting app name by app_id

vishal206
Shopify Partner
8 0 0

how to get name of the app by the app_id provided by orders api

Reply 1 (1)

Hamza_Hussain
Shopify Partner
56 6 13

You can install Shopify GraphQL App and run the following query to get app name and much more.

 

query MyQuery {
  app(id: "insert you app id here") {
    handle
    title
  }
}

 

Hamza_Hussain_0-1715076070316.png

 

Honey G Hamza