Git Product home page Git Product logo

Comments (7)

andrew-coleman avatar andrew-coleman commented on August 15, 2024

This is failing because it is trying to find Account as a property of Order. Everything within the square brackets is evaluated in the context of each Order. So you need to tell it that Account is a property of the root of the JSON structure. You do this using the $$ syntax (see http://docs.jsonata.org/programming.html#built-in-variables). The following expression should do what you need:
Accounts.Order[OrderID = $$.Account.Shipping.OrderID]

from jsonata.

raj-work avatar raj-work commented on August 15, 2024

@andrew-coleman thanks for the quick response. Thanks helped.
I was earlier trying with $ and not the $$ which was my mistake.

from jsonata.

raj-work avatar raj-work commented on August 15, 2024

@andrew-coleman it looks like i had some cached response. when i tried what you suggested, it still is not working. I am getting no match even though i have the same OrderID in both.

from jsonata.

mattbaileyuk avatar mattbaileyuk commented on August 15, 2024

@raj-work Not sure if the difference between Accounts and Account both in your example and @andrew-coleman's suggestion is the key here...

I added a shipping object with an orderID and used Account.Order[OrderID=$$.Account.Shipping.OrderID] to successfully match only the order which was listed in the shipping object, which is what I'd interpreted your original query to be. See http://try.jsonata.org/rkEXhYt4b

If that's not what you're looking for, could you please share the structure of your data via the try.jsonata.org exerciser.

from jsonata.

raj-work avatar raj-work commented on August 15, 2024

@mattbaileyuk it works if there is only one Shipping object. But if I have more than one Shipping object, it doesnt work. So, I was not sure if that is something which is not supported.

from jsonata.

andrew-coleman avatar andrew-coleman commented on August 15, 2024

In that case, use
Accounts.Order[OrderID in $$.Account.Shipping.OrderID]

See http://docs.jsonata.org/operators.html#in

from jsonata.

raj-work avatar raj-work commented on August 15, 2024

@andrew-coleman That worked!! Seems like I was missing the "in" eventually. Thanks for all your support. Happy 4th 👍

from jsonata.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.