MCPcopy Create free account
hub / github.com/PaperDebugger/paperdebugger / getProject

Function getProject

webapp/_webapp/src/query/api.ts:152–157  ·  view source on GitHub ↗
(data: PlainMessage<GetProjectRequest>)

Source from the content-addressed store, hash-verified

150};
151
152export const getProject = async (data: PlainMessage<GetProjectRequest>) => {
153 const response = await apiclient.get(`/projects/${data.projectId}`, data, {
154 ignoreErrorToast: true,
155 });
156 return fromJson(GetProjectResponseSchema, response);
157};
158
159export const getCitationKeys = async (data: PlainMessage<GetCitationKeysRequest>) => {
160 const response = await apiclientV2.get(`/chats/citation-keys`, data, {

Callers 1

useGetProjectQueryFunction · 0.90

Calls 2

fromJsonFunction · 0.90
getMethod · 0.45

Tested by

no test coverage detected