Hi, I have tried to create customerSegmentMembers
via GraphQL customerSegmentMembers - GraphQL Admin . Most of the time this request works normally, but now it doesn’t return full data. Here is an example of the request:
query {
customerSegmentMembers(first: 250, query: "customer_tags CONTAINS 'test'") {
edges {
node {
id
firstName
lastName
defaultEmailAddress {
emailAddress
}
}
}
}
}
I have 2–3 new customers with a specific tag, but the Shopify API returns only customers who already had this tag a while ago, not those who got this tag during recent several hours. The same situation occurs if you try to run the segment code in the Customers admin CP. Even if you delete a tag for an old customers, the request data doesn’t update. Is there any solution or update regarding this issue?