Advertisement
Guest User

Untitled

a guest
Jan 11th, 2023
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.49 KB | None | 0 0
  1. {
  2.     "from" : "jobs",
  3.     "let" : {
  4.         "searchId" : "$jobId"
  5.     },
  6.     "pipeline" : [
  7.         {
  8.             "$search" : {
  9.                 "queryString" : {
  10.                     "defaultPath" : "_id",
  11.                     "query" : "$$searchId"
  12.                 }
  13.             }
  14.         },
  15.         {
  16.             "$project" : {
  17.                 "test.tool" : 1,
  18.                 "test.type" : 1,
  19.                 "test.weight" : 1
  20.             }
  21.         }
  22.     ],
  23.     "as" : "test"
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement