Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions client/src/queries/accessChecksQueries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export const GET_ACCESS_CHECKS_BY_USERID: TypedDocumentNode<AccessCheck, { userI
archived
quiz
isLocked
expires
}
}
}
Expand Down
8 changes: 8 additions & 0 deletions client/src/queries/equipmentQueries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export const GET_EQUIPMENTS = gql`
trainingModules {
id
name
expires
}
numAvailable
numInUse
Expand Down Expand Up @@ -55,6 +56,7 @@ export const GET_EQUIPMENT_BY_ID = gql`
id
name
archived
expires
}
notes
numAvailable
Expand Down Expand Up @@ -85,6 +87,7 @@ export const GET_ANY_EQUIPMENT_BY_ID = gql`
trainingModules {
id
name
expires
}
notes
numAvailable
Expand All @@ -111,6 +114,7 @@ export const GET_CORRESPONDING_MACHINE_BY_READER_ID = gql`
trainingModules {
id
name
expires
}
notes
numAvailable
Expand Down Expand Up @@ -154,6 +158,7 @@ export const GET_ARCHIVED_EQUIPMENT_BY_ID = gql`
trainingModules {
id
name
expires
}
notes
byReservationOnly
Expand Down Expand Up @@ -261,20 +266,23 @@ export const GET_EQUIPMENT_TRAININGS_BY_ID = gql`
trainingModules {
id
name
expires
}
room {
id
name
trainingModules {
id
name
expires
}
makerspace {
id
name
trainingModules {
id
name
expires
}
}
}
Expand Down
4 changes: 4 additions & 0 deletions client/src/queries/makerspaceQueries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ export const GET_FULL_MAKERSPACES = gql`
trainingModules {
id
name
expires
}
numAvailable
numInUse
Expand Down Expand Up @@ -207,6 +208,7 @@ export const GET_MAKERSPACE_BY_ID = gql`
trainingModules {
id
name
expires
}
numAvailable
numInUse
Expand All @@ -222,11 +224,13 @@ export const GET_MAKERSPACE_BY_ID = gql`
trainingModules {
id
name
expires
}
}
trainingModules {
id
name
expires
}
}
}
Expand Down
2 changes: 2 additions & 0 deletions client/src/queries/roomQueries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ export const GET_ROOM = gql`
trainingModules {
id
name
expires
}
numAvailable
numInUse
Expand All @@ -83,6 +84,7 @@ export const GET_ROOM = gql`
trainingModules {
id
name
expires
}
}
}
Expand Down
Loading