FROM CACHE - jp_header
このコミュニティはピアツーピアサポートに移行しました。Shopify サポートは今後、このコミュニティへのサービスを提供いたしません。これからもぜひ、他のマーチャントやパートナーとつながり、サポートし合い、経験を共有してください。 当社の行動規範に違反する行動や削除を希望するコンテンツがありましたら、引き続きご報告ください

商品情報をbulkのポーリングのレスポンス結果のurlがnullになってしまいます。

解決済

商品情報をbulkのポーリングのレスポンス結果のurlがnullになってしまいます。

kami3
Shopify Partner
2 1 0

bulkOperationRunQueryクエリ(products)で取得したIDで、pollingクエリを実行したところ、
statusが"COMPLETED"にも関わらず、urlが"NULL"になってしまいました。

ポーリング結果のurがl返ってくる方法を教えていただきたいです。

 

どなたかご存じの方、よろしくお願いいたします!

 

bulkクエリ

mutation {
  bulkOperationRunQuery(
    query: """
    {
      products(query: "created_at:>'2023-09-27T05:00:00Z'") {
        edges {
          node {
            legacyResourceId
            availablePublicationCount
            createdAt
            defaultCursor
            description
            descriptionHtml
            giftCardTemplateSuffix
            handle
            hasOnlyDefaultVariant
            hasOutOfStockVariants
            id
            isGiftCard
            mediaCount
            onlineStorePreviewUrl
            onlineStoreUrl
            productType
            publicationCount
            publishedAt
            publishedOnCurrentPublication
            requiresSellingPlan
            sellingPlanGroupCount
            status
            tags
            templateSuffix
            title
            totalInventory
            totalVariants
            tracksInventory
            updatedAt
            vendor
            featuredImage {
              id
              url
            }
            productCategory {
              productTaxonomyNode {
                fullName
                name
                id
              }
            }
            options {
              id
              name
              position
              values
            }
            images(first: 1) {
              edges {
                node {
                  altText
                  height
                  id
                  url
                  width
                }
              }
            }
            sellingPlanGroups(first: 1) {
              edges {
                node {
                  appId
                  createdAt
                  description
                  id
                  merchantCode
                  name
                  options
                  position
                  productCount
                  productVariantCount
                  summary
                }
              }
            }
          }
        }
      }
    }
    """
  ) {
    bulkOperation {
      id
      status
    }
    userErrors {
      field
      message
    }
  }
}

 

ポーリングクエリ

{
  node(id:"gid://shopify/BulkOperation/3444559118617") {
    ... on BulkOperation {
      id
      status
      errorCode
      createdAt
      completedAt
      objectCount
      fileSize
      url
      partialDataUrl
    }
  }
}

ポーリング結果

kami3_1-1698284229320.png

 

1 件の受理された解決策

kami3
Shopify Partner
2 1 0

成功

解決いたしました。

元の投稿で解決策を見る

1件の返信1

kami3
Shopify Partner
2 1 0

成功

解決いたしました。