Giter VIP home page Giter VIP logo

Comments (4)

lowki avatar lowki commented on July 22, 2024 1

I understand, thank you for your help.

from phpcr-odm.

dbu avatar dbu commented on July 22, 2024

the sort order is only used when accessing nodes / documents in tree navigation. for queries, there is no defined sort order unless you use a order by. (but afaik there is no order by child-order).

the preferred mode of interacting with phpcr is by using the tree structures. doing a query like in your example is porting the SQL patterns to phpcr. in a relational database, this is how you have to do it. but with phpcr, you can have a document Category and then do something like:

$category = $dm->find('/cms/simple/products/fauteuil-de-bureau');
foreach ($category->getProducts() as $product) {...

getProducts can use the @Children mapping to map all children. if you have a mixed tree, getProducts can do instanceof checks to filter out non-product children.

from phpcr-odm.

lowki avatar lowki commented on July 22, 2024

I see, but is there a way to get the sort_order value in the results?
And why the results order doesn't reflect the mysql query? (Just for my understanding)

from phpcr-odm.

dbu avatar dbu commented on July 22, 2024

the order is only meaningful within the children of a specific node. query are usually on whole ranges and not children of a single parent. if i have a tree like this

               A
            /    \  
          B        C
        /   \     /  \
      D      E   F    G

and my query finds B and F, the "sort order" has no meaning. sort order is relevant for B, C and for D, E and for F, G but as soon as you leave the context of a single parent, the sort order does not mean anything.

from phpcr-odm.

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.