We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 72b4423 + 4da2fe9 commit 5facb7fCopy full SHA for 5facb7f
connect/resource/fulfillment.py
@@ -22,7 +22,7 @@ class FulfillmentResource(BaseResource):
22
def build_filter(self):
23
filters = super(FulfillmentResource, self).build_filter()
24
if self.config.products:
25
- filters['product_id'] = self.config.products
+ filters['asset.product.id__in'] = ','.join(self.config.products)
26
27
filters['status'] = 'pending'
28
return filters
0 commit comments