Code Monkey home page Code Monkey logo

Comments (11)

lauraannwilliams avatar lauraannwilliams commented on July 22, 2024 1

@abelosorio I'm looking myself - I've found this: https://github.com/blueflag/graphql-aggregate but I'm still mid-evaluation

from graphql-sequelize.

mickhansen avatar mickhansen commented on July 22, 2024

Not sure we can come up with a design that accurately handles all the cases of aggregations.
The aggregations i have in my code are custom implementations, did not see a pattern that i could make generic.

from graphql-sequelize.

joewood avatar joewood commented on July 22, 2024

OK, thanks - so I'm better off doing a raw query from GraphQL? That's fine - just checking I wasn't missing anything really.

from graphql-sequelize.

mickhansen avatar mickhansen commented on July 22, 2024

@joewood or using Model.aggregate possibly

from graphql-sequelize.

joewood avatar joewood commented on July 22, 2024

Ah, it seems I was missing something. Thanks.

from graphql-sequelize.

joewood avatar joewood commented on July 22, 2024

One suggestion that would be really great to add to the library would be a special resolver function that performs an aggregation function on the linked association. This would mean modifying the resolver factory function to include the details of the .aggregate function. And also modify generateIncludes to integrate this into the generated SQL. So it would be used something like this:

let customerType = new GraphQLObjectType({
    name:"Customer",
    fields: () => _.extend(attributeFrields(customerTable), {
        orderCount: {
            type: GraphQLInt,
            resolve: aggregateResolver(customerTable.associations.orders,"count")
        }
    });

The generated SQL would have to group by all the fields outside of the aggregate association.

from graphql-sequelize.

mickhansen avatar mickhansen commented on July 22, 2024

@joewood Mixing aggregations and includes can be tricky. With window functions you can do the most basic ones though.

from graphql-sequelize.

abelosorio avatar abelosorio commented on July 22, 2024

Any news about this? I need to use aggregations but I can't found any documentation of that...

from graphql-sequelize.

abelosorio avatar abelosorio commented on July 22, 2024

@lauraannwilliams could be useful. I'm using raw queries by now, but it's not a great solution. There is another way else to use aggregation in GraphQL?

from graphql-sequelize.

SirWojtek avatar SirWojtek commented on July 22, 2024

Hello @abelosorio, I think I figure out the pattern to get COUNT:

const modelType = new GraphQLObjectType({
  name: 'Model',
  fields: attributeFields(models.Model)
});
const modelWithCountType = new GraphQlObjectType({
  name: 'ModelWithCount',
  fields: {
    models: { type: new GraphQLList(modelType) },
    count: { type: GraphQLInt }
  }
});

const query = {
  type: modelWithCountType,
  args: { // some query arguments },
  resolve: resolver(models.Model, {
    list: true,  // NOTE: we return list of Models but using ModelWithCountType
    after: (models) => ({ models, count: models.length })
  }),
}

To summarize that: you need to create a GraphQL wrapper and manipulate a little with returned results. I hope it helps :)

from graphql-sequelize.

stale avatar stale commented on July 22, 2024

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

from graphql-sequelize.

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.