Graphics

 View Only
  • 1.  Reordering JSON data dynamically

    Posted 12 days ago

    I understand that it is possible to reorder data via SQL Queries via this tutorial. - Using SQL Queries to Automatically Order External Data Dynamically

    But is it possible to reorder JSON data dynamically in datalinq?

     



    ------------------------------
    Jordan Allen - Mix Effect Media XPression
    London United Kingdom
    ------------------------------


  • 2.  RE: Reordering JSON data dynamically

    Ross Staff
    Posted 12 days ago

    Do you know anyone who knows Python? They could make you a file that reoarders the json file. 

    Alternatively I think you'd need to reorder once its inside XPression already. 

    What are you try to do because you can do pretty decent searches on XML that I think would work on json such as;

    team\player<<2>oncourt=Y>\stats 



    ------------------------------
    Simon Redmile
    Senior Graphic Programmer & Designer
    Ross Video
    Bristol United Kingdom
    ------------------------------



  • 3.  RE: Reordering JSON data dynamically

    Ross Staff
    Posted 11 days ago

    In Version 10.5 and higher, You can use <max>, <max-1>, <max-2>, etc., to find the highest, second highest, third highest element, etc., in your array:

    in DataLinq, when searching for data in a tree based DataLinq, the <index> field can now use the keyword "max" to return the element from the highest array index.  e.g. scoring\plays<max>\description will return the description from the highest play element.  <max-1> would return the second highest element, etc.



    ------------------------------
    Jeff Mayer
    Ross Video
    ------------------------------



  • 4.  RE: Reordering JSON data dynamically

    Ross Staff
    Posted 11 days ago

    Dude I totally forgot this feature was a thing! Thank you!



    ------------------------------
    Simon Redmile
    Senior Graphic Programmer & Designer
    Ross Video
    Bristol United Kingdom
    ------------------------------



  • 5.  RE: Reordering JSON data dynamically

    Posted 10 days ago

    This is great. Thank you for this. Can you also do the same for <min>, or is it exclusive to Max value? I tested it with <min>, and it didn't seem to work.

    Do you have some document that lists all these functions for the <index> for future reference? 



    ------------------------------
    Jordan Allen - Mix Effect Media XPression
    London United Kingdom
    ------------------------------



  • 6.  RE: Reordering JSON data dynamically

    Ross Staff
    Posted 10 days ago

    Match Multiple Search Criteria

    The XML/JSON datalinqs can now search multiple attributes or elements to return a node that matches all search criteria.  e.g. players<team=NY;jersey=10>

    Look For Increments of an Index Value or Search Criteria

    A DataLinq comparison key such as <club=ross> can now have an additional index parameter as well, like so <club=ross<2>>, which will retrieve the second item matching the key.

    Search Through Child Elements and Attributes

    The XML datalinq types can search for children elements/attributes in a level of the tree by using "childname.field=%key%".  e.g. player<info.jersey=%num%>\name

    Find the Highest Index Value of an Element

    The <index> field can now use the keyword "max" to return the element from the highest array index.  e.g. scoring\plays<max>\description will return the description from the highest play element.  <max-1> would return the second highest element, etc



    ------------------------------
    Jeff Mayer
    Ross Video
    ------------------------------