Merged in release/2024-03-14 (pull request #2146)

Release/2024 03 14
This commit is contained in:
Dave Richer
2025-03-04 22:56:23 +00:00
11 changed files with 279 additions and 69 deletions

View File

@@ -2817,3 +2817,13 @@ exports.INSERT_NOTIFICATIONS_MUTATION = ` mutation INSERT_NOTIFICATIONS($object
}
}
}`;
exports.GET_BODYSHOP_BY_ID = `
query GET_BODYSHOP_BY_ID($id: uuid!) {
bodyshops_by_pk(id: $id) {
id
md_order_statuses
shopname
}
}
`;