Skip to content

Commit

Permalink
Merge branch 'main' into retriever-backport
Browse files Browse the repository at this point in the history
  • Loading branch information
rjawesome authored Aug 14, 2024
2 parents 6f89de1 + 8914774 commit ede8ef0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parser/query_operation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default class QueryOperationObject implements QueryOperationInterface {
static unfreeze(obj: any) {
const newObj = new QueryOperationObject();
newObj.params = obj.params;
newObj.request_body = obj.requestBody;
newObj.request_body = obj.request_body;
newObj.requestBodyType = obj.requestBodyType;
newObj.supportBatch = obj.supportBatch;
newObj.batchSize = obj.batchSize;
Expand Down

0 comments on commit ede8ef0

Please sign in to comment.