--- title: Event - GraphQL Admin description: >- Events chronicle resource activities such as the creation of an article, the fulfillment of an order, or the addition of a product. api_version: 2026-04 api_name: admin type: interface api_type: graphql source_url: html: 'https://shopify.dev/docs/api/admin-graphql/latest/interfaces/Event' md: 'https://shopify.dev/docs/api/admin-graphql/latest/interfaces/Event.md' --- # Event interface Events chronicle resource activities such as the creation of an article, the fulfillment of an order, or the addition of a product. ## Fields * action [String!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/String) non-null The action that occured. * app​Title [String](https://shopify.dev/docs/api/admin-graphql/latest/scalars/String) The name of the app that created the event. * attribute​To​App [Boolean!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/Boolean) non-null Whether the event was created by an app. * attribute​To​User [Boolean!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/Boolean) non-null Whether the event was caused by an admin user. * created​At [Date​Time!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/DateTime) non-null The date and time when the event was created. * critical​Alert [Boolean!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/Boolean) non-null Whether the event is critical. * id [ID!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/ID) non-null A globally-unique ID. * message [Formatted​String!](https://shopify.dev/docs/api/admin-graphql/latest/scalars/FormattedString) non-null Human readable text that describes the event. *** ##### Variables ```json { "action": "", "appTitle": "", "attributeToApp": "", "attributeToUser": "", "createdAt": "", "criticalAlert": "", "id": "", "message": "" } ``` ##### Schema ```graphql interface Event { action: String! appTitle: String attributeToApp: Boolean! attributeToUser: Boolean! createdAt: DateTime! criticalAlert: Boolean! id: ID! message: FormattedString! } ```