Giter VIP home page Giter VIP logo

Comments (3)

PowerKiKi avatar PowerKiKi commented on June 13, 2024

I strongly suggest to work with ChromeiQL (or equivalent) when writing queries to benefit from auto-completion.

  1. Filtering with between, you missed the keys groups, from, and to:
query {
    Employee (sorting: { field: age, order: DESC }, filter: {groups: [{conditions: {
        age: {between: {from: 18, to: 55}}
    }}]}) {
        name
        age
    }
}
  1. Yes you can do join, but only on relations known by Doctrine (assuming a Company entity exists):
query {
    Employee(filter: {groups: [{joins: {company: {conditions: [{name: {like: {value: "%foo%"}}}]}}}]}) {
        name
        age
    }
}
  1. If you write a custom sort/filter by computing something, then you'll have to do some extra work to expose that computed value in your entity getter. You probably want to organize things to re-use the same code for both the getter and the custom sort/filter.

You may want to have a look in https://github.com/Ecodev/dilps/tree/master/server/Application/Api/Input. I don't think there is exactly what you need, but it's a real-world application using this lib.

Also I strongly suggest to browse the test data that cover a lot of common use-cases: https://github.com/Ecodev/graphql-doctrine/tree/master/tests/data/query-builder

from graphql-doctrine.

PowerKiKi avatar PowerKiKi commented on June 13, 2024

Oh, of course PR to improve the documentation are more than welcome. Some sections, such as filter and sorting, were written rather quickly. It would help to have an external point of view such as yours. Feel free to open a PR with your ideas as a starting point and it can then be improved together.

from graphql-doctrine.

coolg54321 avatar coolg54321 commented on June 13, 2024

Wow, thank you so much for your quick response. This would really help go in the right direction.

Sure, I am planning to this library more in our current application, I'm sure I would be able to contribute to the documentation soon once I have the more understanding of it.

Thank you so much once again!

from graphql-doctrine.

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.