--- title: jobs - Partner API description: >- A list of the Partner organization's [Experts Marketplace jobs](https://help.shopify.com/partners/selling-services). api_version: 2025-01 api_name: partner type: query api_type: graphql source_url: html: 'https://shopify.dev/docs/api/partner/2025-01/queries/jobs' md: 'https://shopify.dev/docs/api/partner/2025-01/queries/jobs.md' --- # jobs query Deprecated. No longer supported (2024-01). A list of the Partner organization's [Experts Marketplace jobs](https://help.shopify.com/partners/selling-services). ## JobConnection arguments [JobConnection!](https://shopify.dev/docs/api/partner/2025-01/connections/JobConnection) * after [String](https://shopify.dev/docs/api/partner/2025-01/scalars/String) Returns the elements in the list that come after the specified cursor. * before [String](https://shopify.dev/docs/api/partner/2025-01/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/2025-01/scalars/DateTime) Returns jobs that were created on or before the specified date and time. * created​At​Min [Date​Time](https://shopify.dev/docs/api/partner/2025-01/scalars/DateTime) Returns jobs that were created on or after the specified date and time. * first [Int](https://shopify.dev/docs/api/partner/2025-01/scalars/Int) Returns the first *n* elements from the list. * last [Int](https://shopify.dev/docs/api/partner/2025-01/scalars/Int) Returns the last *n* elements from the list. * last​Event​At​Max [Date​Time](https://shopify.dev/docs/api/partner/2025-01/scalars/DateTime) Returns jobs 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/2025-01/scalars/DateTime) Returns jobs where the last event occurred on or after the specified date and time. * shop​Id [ID](https://shopify.dev/docs/api/partner/2025-01/scalars/ID) Returns jobs associated with the specified shop ID. * statuses [\[Job​Status!\]](https://shopify.dev/docs/api/partner/2025-01/enums/JobStatus) Returns jobs with the specified statuses. *** ## Possible returns * edges [\[Job​Edge!\]!](https://shopify.dev/docs/api/partner/2025-01/objects/JobEdge) non-null A list of edges. * page​Info [Page​Info!](https://shopify.dev/docs/api/partner/2025-01/objects/PageInfo) non-null Information about pagination in a connection. *** ## Examples * ### jobs reference ## Query Reference ```graphql { jobs { # jobs fields } } ```