--- title: app - Partner API description: A Shopify [app](/concepts/apps). api_version: 2025-10 api_name: partner type: query api_type: graphql source_url: html: https://shopify.dev/docs/api/partner/latest/queries/App md: https://shopify.dev/docs/api/partner/latest/queries/App.md --- # app query A Shopify [app](https://shopify.dev/concepts/apps). ## Arguments * id [ID!](https://shopify.dev/docs/api/partner/latest/scalars/ID) required The app ID. Example value: `gid://partners/App/1234`. *** ## Possible returns * App [App](https://shopify.dev/docs/api/partner/latest/objects/App) A Shopify [app](https://shopify.dev/concepts/apps). * api​Key [String!](https://shopify.dev/docs/api/partner/latest/scalars/String) non-null A unique application API identifier. * events [App​Event​Connection!](https://shopify.dev/docs/api/partner/latest/connections/AppEventConnection) non-null A list of app events. * after [String](https://shopify.dev/docs/api/partner/latest/scalars/String) ### Arguments Returns the elements in the list that come after the specified cursor. * before [String](https://shopify.dev/docs/api/partner/latest/scalars/String) Returns the elements in the list that come before the specified cursor. * first [Int](https://shopify.dev/docs/api/partner/latest/scalars/Int) Returns the first *n* elements from the list. * last [Int](https://shopify.dev/docs/api/partner/latest/scalars/Int) Returns the last *n* elements from the list. * types [\[App​Event​Types!\]](https://shopify.dev/docs/api/partner/latest/enums/AppEventTypes) Returns app events of the specified types. * shop​Id [ID](https://shopify.dev/docs/api/partner/latest/scalars/ID) Returns app events associated with the specified shop ID. Example value: `gid://partners/Shop/1234`. * charge​Id [ID](https://shopify.dev/docs/api/partner/latest/scalars/ID) Returns app events associated with the specified [app charge](https://shopify.dev/tutorials/bill-for-your-app-using-graphql-admin-api). Example value: `gid://shopify/AppUsageRecord/1234`. * occurred​At​Min [Date​Time](https://shopify.dev/docs/api/partner/latest/scalars/DateTime) Returns app events that occurred on or after the specified date and time. * occurred​At​Max [Date​Time](https://shopify.dev/docs/api/partner/latest/scalars/DateTime) Returns app events that occurred on or before the specified date and time. *** * id [ID!](https://shopify.dev/docs/api/partner/latest/scalars/ID) non-null The ID of the app. Example value: `gid://partners/App/1234`. * name [String!](https://shopify.dev/docs/api/partner/latest/scalars/String) non-null The name of the app. *** ## Examples * ### app reference ## Query Reference ```graphql { app(id) { # app fields } } ```