I’ve noticed on some of the B2B mutations that in the example inputs it’s mentioning <objectName>
rather than the actual resource.
For example:
{
"companyId": "gid://shopify/<objectName>/10079785100",
"input": {
"customerSince": "2019-09-07T15:50:00Z",
"externalId": "<your-externalId>",
"name": "<your-name>",
"note": "<your-note>"
}
}
And another companyLocationAssignStaffMembers - GraphQL Admin
{
"companyLocationId": "gid://shopify/<objectName>/10079785100",
"staffMemberIds": [
"gid://shopify/<objectName>/10079785100"
]
}
It only specify’s an ID should be passed, but no mention of what resource(s) we can actually pass, for example should I just be passing a customer GID here?
Could we get some clarity here as it seems quite a few mutation docs are the same.