cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Lookup on an array in the input document

IgnatiusN
New Contributor II

Hello,

I have a incoming JSON document that has cases and array of casesteps inside. I need to do a lookup on the case step code from a table in the database and add additional properties to the casestep. Is there a way to accomplish this? We tried doing SQL Lookup or In Memory lookup but joining with each case step on the code didnโ€™t work. The jsonPath syntax we were using always returned an array of codes and the lookup was failing. Any help is appreciated!

[
{
caseId: 1,
caseDate: โ€œ2017-08-04โ€,
caseSteps: [{
code: โ€œxyzโ€,
value: 10,
primary: null
},
{
code: โ€œabcโ€,
value: 20,
primary: null
},
{
code: โ€œdefโ€,
value: 20,
primary: null
}]
},
{
caseId: 2,
caseDate: โ€œ2017-08-04โ€,
caseSteps: [{
code: โ€œrewโ€,
value: 10,
primary: null
},
{
code: โ€œwbcโ€,
value: 20,
primary: null
},
{
code: โ€œwweโ€,
value: 20,
primary: null
}]
}
]

Thanks

10 REPLIES 10

I hope this is what you want.

But without complete requirement and data, I cannot get you complete solution.

Definitely this should be a way forward for you.

image

Ignatius_cases_2017_08_04.slp (9.0 KB)

Attached is the sample I worked. I am sure you can improve upon.

Thank you, the example is very helpful. Appreciate it!

The Lookup snaps are going to operate on documents and not arrays inside of documents. You could use a JSONSplitter snap to break up the array into multiple documents, but then you probably need to collect them back together to keep the original format, which can be difficult. It might be easier to use the expression language to perform the lookups.

Would you be able to restructure this source data so that it is more like an object? For example:

{
  "abc" : {
    "exp_time": "30s"
  },
  "xyz" : {
    "exp_time": "20s"
  },
  ...
}

If so, the lookup is then just a matter of getting the property from this object. If this JSON source data is static and in a file, you can import it via an expression library (see https://doc.snaplogic.com/wiki/spaces/SD/pages/1438110/Expression+Libraries).

For example, if you imported this source data as a library with the name โ€˜sourceโ€™. You can then use a map() method to perform the transform on the array:

$.caseSteps.map(elem => elem.extend(lib.source[elem.code]))

This code will iterate over the the elements of the array using the map() method. For each element, it will execute the function that was passed in to create the new value for the element. The callback function looks up the data to add in to the object (lib.source[elem.code]) and then creates a new object from the existing one and the extra data (elem.extend()).

IgnatiusN
New Contributor II

Thank you we will look into this. Is it possible to load the expression library from database?