--- title: conversations - Partner API description: A list of the Partner organization's conversations. api_version: 2025-10 api_name: partner type: query api_type: graphql source_url: html: 'https://shopify.dev/docs/api/partner/latest/queries/conversations' md: 'https://shopify.dev/docs/api/partner/latest/queries/conversations.md' --- # conversations query Deprecated. No longer supported (2024-01). A list of the Partner organization's conversations. ## ConversationConnection arguments [ConversationConnection!](https://shopify.dev/docs/api/partner/latest/connections/ConversationConnection) * after [String](https://shopify.dev/docs/api/partner/latest/scalars/String) 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. * created​At​Max [Date​Time](https://shopify.dev/docs/api/partner/latest/scalars/DateTime) Returns conversations that were created on or before the specified date and time. * created​At​Min [Date​Time](https://shopify.dev/docs/api/partner/latest/scalars/DateTime) Returns conversations that were created on or after the specified date and time. * 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. * last​Event​At​Max [Date​Time](https://shopify.dev/docs/api/partner/latest/scalars/DateTime) Returns conversations where the last event occurred on or before the specified date and time. * last​Event​At​Min [Date​Time](https://shopify.dev/docs/api/partner/latest/scalars/DateTime) Returns conversations where the last event occurred on or after the specified date and time. * statuses [\[Conversation​Status!\]](https://shopify.dev/docs/api/partner/latest/enums/ConversationStatus) Returns conversations with the specified statuses. * unread​Only [Boolean](https://shopify.dev/docs/api/partner/latest/scalars/Boolean) Default:false Only include conversations that have unread messages. *** ## Possible returns * edges [\[Conversation​Edge!\]!](https://shopify.dev/docs/api/partner/latest/objects/ConversationEdge) non-null A list of edges. * page​Info [Page​Info!](https://shopify.dev/docs/api/partner/latest/objects/PageInfo) non-null Information about pagination in a connection. *** ## Examples * ### conversations reference ## Query Reference ```graphql { conversations { # conversations fields } } ```