File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ export const GET_EQUIPMENTS = gql`
1515 numAvailable
1616 numInUse
1717 byReservationOnly
18+ requiresInPerson
1819 room {
1920 makerspace {
2021 id
@@ -87,6 +88,7 @@ export const GET_ANY_EQUIPMENT_BY_ID = gql`
8788 numInUse
8889 byReservationOnly
8990 needsWelcome
91+ requiresInPerson
9092 }
9193 }
9294` ;
@@ -112,6 +114,7 @@ export const GET_CORRESPONDING_MACHINE_BY_READER_ID = gql`
112114 numInUse
113115 byReservationOnly
114116 needsWelcome
117+ requiresInPerson
115118 }
116119 }
117120` ;
@@ -128,6 +131,7 @@ export const GET_ARCHIVED_EQUIPMENTS = gql`
128131 sopUrl
129132 byReservationOnly
130133 needsWelcome
134+ requiresInPerson
131135 }
132136 }
133137` ;
@@ -151,6 +155,7 @@ export const GET_ARCHIVED_EQUIPMENT_BY_ID = gql`
151155 notes
152156 byReservationOnly
153157 needsWelcome
158+ requiresInPerson
154159 }
155160 }
156161` ;
Original file line number Diff line number Diff line change @@ -101,6 +101,8 @@ export const GET_FULL_MAKERSPACES = gql`
101101 numAvailable
102102 numInUse
103103 byReservationOnly
104+ needsWelcome
105+ requiresInPerson
104106 }
105107 }
106108 }
@@ -179,6 +181,9 @@ export const GET_MAKERSPACE_BY_ID = gql`
179181 numAvailable
180182 numInUse
181183 byReservationOnly
184+ needsWelcome
185+ requiresInPerson
186+
182187 notes
183188 archived
184189 }
You can’t perform that action at this time.
0 commit comments