How To Use Mule's DataWeave Map Operator

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ม.ค. 2025

ความคิดเห็น • 37

  • @susmitdey9172
    @susmitdey9172 6 ปีที่แล้ว

    Someone who has been in doubt about the functional programming and dataweave map, and then you this video, makes it look so easy :) TY Jason

  • @fredericklane745
    @fredericklane745 4 ปีที่แล้ว

    Thanks Jason. I'm brand-new to mulesoft and working out a study strategy whilst doing the Trailhead modules in Salesforce. Great explanation of this concept thankyou.

  • @rajibpaul7628
    @rajibpaul7628 7 ปีที่แล้ว +4

    A precisely detailed video. and the explanation of the documentation was the best part for relevance. thanks a lot. keep up the good work.

    • @JasonEstevan
      @JasonEstevan  7 ปีที่แล้ว

      Thank you for your feedback. I will try to incorporate it in upcoming videos :)

    • @sabarichamp6151
      @sabarichamp6151 5 ปีที่แล้ว

      Can anyone help me with this..The following Json object has multiple arrays which has multiple object in it. Using dataweave we need to extract the common objects of all arrays based on 'id' key. The extracted output may be in any format.
      Input:
      {
      "userslist1":[
      {
      "username":"",
      "id":12
      },
      {
      "username":"",
      "id":13
      },
      {
      "username":"",
      "id":19
      }
      ],
      "userslist2":[
      {
      "username":"",
      "id":12
      },
      {
      "username":"",
      "id":14
      },
      {
      "username":"",
      "id":13
      }
      ],
      "userslist3":[
      {
      "username":"",
      "id":12
      },
      {
      "username":"",
      "id":15
      },
      {
      "username":"",
      "id":13
      }
      ]
      }

  • @AnilKumar-og8bx
    @AnilKumar-og8bx 5 ปีที่แล้ว

    Thanks a bunch Jason. That was crystal Clear. Appreciate the genuine efforts

  • @avkumar0811
    @avkumar0811 6 ปีที่แล้ว

    That was one of the best explained video of dataweave. Helped a lot to understand.

    • @JasonEstevan
      @JasonEstevan  6 ปีที่แล้ว

      avdhesh pareek Glad it helped! Thank you for your kind words.

  • @ravichowdary488
    @ravichowdary488 5 ปีที่แล้ว

    Great work, which is very helpful. Please continue doing this

  • @krishnan9151
    @krishnan9151 5 ปีที่แล้ว

    awesome explanation of map operator

  • @santoshmudholam
    @santoshmudholam 6 ปีที่แล้ว

    Exemplary is so good...Jason.

  • @OutOfSimpleCuriosity
    @OutOfSimpleCuriosity 4 ปีที่แล้ว

    How is posible to make lower case keys and values in json payload then values can be array? if no arrays then its:
    (lower $$) : (lower $), but cant find example for arrays

  • @pragneshdesai1978
    @pragneshdesai1978 6 ปีที่แล้ว +1

    Great explanation...Could you please upload for mapObject too

  • @nagendrakumar1387
    @nagendrakumar1387 5 ปีที่แล้ว +1

    Could you please explain how to read a file in the middle of the flow using Mule Requester.

    • @pentamnaidu
      @pentamnaidu 5 ปีที่แล้ว +1

      This can be achieved in Mule 3.7/8/9 using Mule requestor connector , by default it will not be available , we have to install ..so that you can read file in the middle of flow execution

  • @chamikaperera9091
    @chamikaperera9091 4 ปีที่แล้ว

    Thanks, Wel Explained

  • @rahulmule2398
    @rahulmule2398 5 ปีที่แล้ว

    Perfect explanation!!

  • @amitmohan4011
    @amitmohan4011 6 ปีที่แล้ว +2

    Great video.. Can you upload a video on Caching and Object Store also

    • @JasonEstevan
      @JasonEstevan  6 ปีที่แล้ว

      Oooo that's a great topic idea, thanks!

  • @kalyankumar7434
    @kalyankumar7434 6 ปีที่แล้ว

    Hi Thank you and also can you add video for How To Use Mule's Data Weave Pluck operator

  • @theitboss
    @theitboss 6 ปีที่แล้ว

    Great explanation... Clear to the point. Thanks :-)

  • @abhayagarwal6347
    @abhayagarwal6347 6 ปีที่แล้ว

    excellent .. I have no words ... awesome ...

  • @kamalakarreddy206
    @kamalakarreddy206 6 ปีที่แล้ว

    Hi Jason,
    Please upload more videos

  • @ryancarter2417
    @ryancarter2417 6 ปีที่แล้ว

    Great tutorial!

  • @nagautube1
    @nagautube1 6 ปีที่แล้ว

    Thanks for the excellent video

  • @hellothere7824
    @hellothere7824 6 ปีที่แล้ว

    What is it with the red shoe? :D

  • @kamalakarreddy206
    @kamalakarreddy206 6 ปีที่แล้ว

    Hi jason,
    I have employee data(first name,last name,age & etc) in XML but i need to retrieve the data based only the last name.
    input sample:
    john
    reddy
    kamal
    reddy
    babu
    naidu
    I need to retrieve the elements based on the lastname,lastname having reddy.
    How to retrieve this ?

    • @sompankaj
      @sompankaj 6 ปีที่แล้ว +1

      {
      Employees: payload.employees.*employee[?($.lastname == "reddy")]
      }

    • @kamalakarreddy206
      @kamalakarreddy206 6 ปีที่แล้ว

      @@sompankaj Tqs pankaj

  • @jeffbowman9974
    @jeffbowman9974 6 ปีที่แล้ว

    Good video. One thing you didn't mention was how to give names to the $$ and $ generic variables. You could have used this: map ((index, element) -> { index: index, data: element }) or later in your video perhaps map ((index, person) -> { name: person.name, age: person.age }). This is not spelled out very well in the Mulesoft documentation, unfortunately, but there is an example usage with a paragraph to describe as the second example under the Map section ( docs.mulesoft.com/mule-user-guide/v/3.9/dataweave-operators#map)
    Keep up the great videos!

  • @prashanth111able
    @prashanth111able 6 ปีที่แล้ว

    Great!!! Thank you!!

  • @sharathmothe4283
    @sharathmothe4283 6 ปีที่แล้ว

    Good one

  • @AICreater517
    @AICreater517 6 ปีที่แล้ว

    Very helpful

  • @Baheerathan1990
    @Baheerathan1990 5 ปีที่แล้ว

    Gold