mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 08:23:00 +08:00
22 lines
457 B
TypeScript
22 lines
457 B
TypeScript
import gql from 'graphql-tag';
|
|
|
|
export const GET_NOTICES_BY_CREATOR = gql`
|
|
query getNoticesByCreatorUid($uid: String!) {
|
|
noticesByCreator(uid: $uid) {
|
|
uid
|
|
title
|
|
body
|
|
expiry
|
|
createdByUid
|
|
departments {
|
|
uid
|
|
name
|
|
}
|
|
groups {
|
|
uid
|
|
name
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|