The APIService was made to replicate React-Query in Angular, however we only have a useQuery equivalent, not a useMutation. Because of this, we end up using query everywhere which can result in some janky situations (see #218)
Acceptance Criteria
a new method named post has been added to the apiservice and has the same functionality as useMutation in React-Query
replace the places in the code where it would work better than query and make sure the code works accordingly
Description
The APIService was made to replicate React-Query in Angular, however we only have a useQuery equivalent, not a useMutation. Because of this, we end up using query everywhere which can result in some janky situations (see #218)
Acceptance Criteria
Proposed Solution
Ask Reid for specifics