feature/IO-3701-Harness-Replacement - Implement
This commit is contained in:
@@ -2968,6 +2968,30 @@ exports.GET_BODYSHOP_BY_ID = `
|
||||
}
|
||||
`;
|
||||
|
||||
exports.CHECK_BODYSHOP_ACCESS = `
|
||||
query CHECK_BODYSHOP_ACCESS($id: uuid!) {
|
||||
bodyshops_by_pk(id: $id) {
|
||||
id
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
exports.GET_BODYSHOP_FEATURE_FLAGS = `
|
||||
query GET_BODYSHOP_FEATURE_FLAGS($bodyshopid: uuid!) {
|
||||
feature_flags(where: { active: { _eq: true } }, order_by: { name: asc }) {
|
||||
name
|
||||
default_treatment
|
||||
}
|
||||
bodyshop_feature_flags(where: { bodyshopid: { _eq: $bodyshopid } }, order_by: { name: asc }) {
|
||||
name
|
||||
treatment
|
||||
config
|
||||
activeDate
|
||||
deactiveDate
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
exports.GET_BODYSHOP_WATCHERS_BY_ID = `
|
||||
query GET_BODYSHOP_BY_ID($id: uuid!) {
|
||||
bodyshops_by_pk(id: $id) {
|
||||
@@ -3356,4 +3380,4 @@ exports.GET_DOCUMENSO_KEY_BY_JOBID = `query GET_DOCUMENSO_KEY_BY_JOBID($jobid: u
|
||||
}
|
||||
}
|
||||
}
|
||||
`
|
||||
`
|
||||
|
||||
Reference in New Issue
Block a user