MCPcopy Index your code
hub / github.com/parse-community/parse-server / JSONFromQuery

Method JSONFromQuery

src/Routers/ClassesRouter.js:152–162  ·  view source on GitHub ↗
(query)

Source from the content-addressed store, hash-verified

150 }
151
152 static JSONFromQuery(query) {
153 const json = {};
154 for (const [key, value] of _.entries(query)) {
155 try {
156 json[key] = JSON.parse(value);
157 } catch {
158 json[key] = value;
159 }
160 }
161 return json;
162 }
163
164 static optionsFromBody(body, defaultLimit) {
165 const allowConstraints = [

Callers 5

handleFindMethod · 0.80
handleFindMethod · 0.80
handleFindMethod · 0.80
handleGetMethod · 0.80
handleFindMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected