mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 00:42:59 +08:00
20 lines
311 B
GraphQL
20 lines
311 B
GraphQL
|
|
query getNoticesByCreatorUid($uid: String!) {
|
|
noticesByCreator(uid: $uid) {
|
|
uid
|
|
title
|
|
body
|
|
expiry
|
|
createdByUid
|
|
departments {
|
|
uid
|
|
name
|
|
}
|
|
groups {
|
|
uid
|
|
name
|
|
}
|
|
}
|
|
}
|
|
|
|
|