felicity-lims/webapp/graphql/operations/notice.queries.ts

23 lines
457 B
TypeScript
Raw Normal View History

2023-11-10 14:05:15 +08:00
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
}
}
}
`;