Lookup an App by ID or return the currently authenticated App.


The ID to lookup the App by.


Was this section helpful?

A Shopify application.


Was this section helpful?

Examples

Hide code
DescriptionCopy
query {
  app(id: "gid://shopify/App/193172482") {
    title
  }
}
Hide code
Response
JSON
{
  "app": {
    "title": "Invoicing Application"
  }
}