feature/IO-3096-GlobalNotifications - Watchers - Second Version

This commit is contained in:
Dave Richer
2025-02-06 16:57:55 -05:00
parent f11d9dd804
commit c27b1d802f
6 changed files with 217 additions and 50 deletions

View File

@@ -349,3 +349,13 @@ export const QUERY_STRIPE_ID = gql`
}
}
`;
export const GET_ACTIVE_EMPLOYEES_IN_SHOP = gql`
query GetActiveEmployeesInShop($shopid: uuid!) {
associations(where: { shopid: { _eq: $shopid } }) {
id
useremail
shopid
}
}
`;