jsoniq

Remove duplicates in an object in JSONiq

Remove duplicates in an object in JSONiq Question: This is an example object that I got: { "query1" : [ { "name" : "John", "id" : 1234 }, { "name" : "Rose", "id" : 3214 }, { "name" : "John", "id" : 1234 } ] } How can I remove the duplicates using group by …

Total answers: 3