I’m new to Make and I’m having a little trouble. I’m using an HTTP Make a request and I’m connecting and able to make a company just fine using the following code in the request content. My issue is taht I’m not getting the ID returned from the record I created. Without it I can’t do the rest of the updates I need to do to metafields, contacts, etc. Another option would be if I could query the company with the external ID. This is mostly an issue because none of the Shopify modules have Company in them. As always, thanks for any help anyone can give.
mutation {
companyCreate(
input: {
company: {
name: “{{8.Name}}”
externalId: “{{8.Id}}”
}
}
) {
userErrors {
field
message
code
}
}
}