Skip to content

Commit

Permalink
Removed old query and fixed translation
Browse files Browse the repository at this point in the history
  • Loading branch information
GlenDsza committed Nov 2, 2024
1 parent 0c6c73f commit a653e31
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 49 deletions.
2 changes: 1 addition & 1 deletion public/locales/zh/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@
"title": "事件管理",
"dashboard": "仪表板",
"registrants": "注册者",
"actions": "行动",
"actions": "操作",
"agendas": "议程",
"statistics": "统计数据",
"to": "",
Expand Down
48 changes: 0 additions & 48 deletions src/GraphQl/Queries/ActionItemQueries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,54 +75,6 @@ export const ACTION_ITEM_LIST = gql`
}
`;

export const ACTION_ITEM_LIST_BY_EVENTS = gql`
query actionItemsByEvent($eventId: ID!) {
actionItemsByEvent(eventId: $eventId) {
_id
assignee {
... on EventVolunteer {
_id
user {
_id
firstName
lastName
image
}
}
... on EventVolunteerGroup {
_id
name
}
__typename
}
assigner {
_id
firstName
lastName
}
actionItemCategory {
_id
name
}
preCompletionNotes
postCompletionNotes
assignmentDate
dueDate
completionDate
isCompleted
event {
_id
title
}
creator {
_id
firstName
lastName
}
}
}
`;

export const ACTION_ITEMS_BY_USER = gql`
query ActionItemsByUser(
$userId: ID!
Expand Down

0 comments on commit a653e31

Please sign in to comment.