--- 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-01 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 * appTitle * attributeToApp * attributeToUser * createdAt * criticalAlert * id * message *** ## Types implemented in * BasicEvent * CommentEvent *** ##### 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! } ```