Version: 2024-10
Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-10/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"query SubscriptionBillingCycleBulkResults($jobId: ID!, $first: Int!, $after: String) { subscriptionBillingCycleBulkResults(first: $first, after: $after, jobId: $jobId) { pageInfo { startCursor endCursor } edges { node { cycleIndex } } } }\",\n \"variables\": {\n \"jobId\": \"gid://shopify/Job/0faf9493-b523-4c92-8e6e-59139254b03b\",\n \"first\": 3\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `query SubscriptionBillingCycleBulkResults($jobId: ID!, $first: Int!, $after: String) {\n subscriptionBillingCycleBulkResults(first: $first, after: $after, jobId: $jobId) {\n pageInfo {\n startCursor\n endCursor\n }\n edges {\n node {\n cycleIndex\n }\n }\n }\n }`,\n \"variables\": {\n \"jobId\": \"gid://shopify/Job/0faf9493-b523-4c92-8e6e-59139254b03b\",\n \"first\": 3\n },\n },\n});\n" Ruby example: "session = ShopifyAPI::Auth::Session.new(\n shop: \"your-development-store.myshopify.com\",\n access_token: access_token\n)\nclient = ShopifyAPI::Clients::Graphql::Admin.new(\n session: session\n)\n\nquery = <<~QUERY\n query SubscriptionBillingCycleBulkResults($jobId: ID!, $first: Int!, $after: String) {\n subscriptionBillingCycleBulkResults(first: $first, after: $after, jobId: $jobId) {\n pageInfo {\n startCursor\n endCursor\n }\n edges {\n node {\n cycleIndex\n }\n }\n }\n }\nQUERY\n\nvariables = {\n \"jobId\": \"gid://shopify/Job/0faf9493-b523-4c92-8e6e-59139254b03b\",\n \"first\": 3\n}\n\nresponse = client.query(query: query, variables: variables)\n" PHP example: "use Shopify\\Clients\\Graphql;\n\n$client = new Graphql(\"your-development-store.myshopify.com\", $accessToken);\n$query = <<\"gid://shopify/Job/0faf9493-b523-4c92-8e6e-59139254b03b\",\n \"first\" => 3,\n];\n\n$response = $client->query([\"query\" => $query, \"variables\" => $variables]);\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n query SubscriptionBillingCycleBulkResults($jobId: ID!, $first: Int!, $after: String) {\n subscriptionBillingCycleBulkResults(first: $first, after: $after, jobId: $jobId) {\n pageInfo {\n startCursor\n endCursor\n }\n edges {\n node {\n cycleIndex\n }\n }\n }\n }`,\n {\n variables: {\n \"jobId\": \"gid://shopify/Job/0faf9493-b523-4c92-8e6e-59139254b03b\",\n \"first\": 3\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "query SubscriptionBillingCycleBulkResults($jobId: ID!, $first: Int!, $after: String) {\n subscriptionBillingCycleBulkResults(first: $first, after: $after, jobId: $jobId) {\n pageInfo {\n startCursor\n endCursor\n }\n edges {\n node {\n cycleIndex\n }\n }\n }\n}"
input: { "jobId": "gid://shopify/Job/0faf9493-b523-4c92-8e6e-59139254b03b", "first": 3 }
response: { "data": { "subscriptionBillingCycleBulkResults": { "pageInfo": { "startCursor": "eyJsYXN0X2lkIjoyMzIzNzkyMjUsImxhc3RfdmFsdWUiOiIyMzIzNzkyMjUifQ==", "endCursor": "eyJsYXN0X2lkIjoyMzIzNzkyMjUsImxhc3RfdmFsdWUiOiIyMzIzNzkyMjUifQ==" }, "edges": [ { "node": { "cycleIndex": 1 } } ] } } }