Getting app name by app_id

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

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
  }
}