Giter VIP home page Giter VIP logo

Comments (4)

dschafer avatar dschafer commented on May 7, 2024

Hm, seems like https://github.com/graphql/swapi-graphql/blob/master/swapi/src/schema/connections.js#L40 does something similar, does that approach work for you?

from graphql-relay-js.

KyleAMathews avatar KyleAMathews commented on May 7, 2024

Ooo... that led me to this: https://github.com/graphql/swapi-graphql/blob/ba3f82aa27115ef7c095a2a96023c58ca367beef/swapi/src/schema/connections.js#L76-L79

Reading that helped make click that I just needed to return an object in the shape expected by connectionType. So similar to the code above I merged the results of connectionFromArray with the custom connectionFields I'm using.

new Promise((resolve, reject) ->
  hits = index.search args.query

  # Hydrate
  async.map hits, ((hit, cb) ->
    postsByIdDb.get(hit.ref, (err, value) ->
      if err
        return cb(err)
      else
        cb(null, value)
    )
  ), (err, hits) ->
    if err
      reject err
    else
      resolve assign(
        connectionFromArray(hits, args),
        {
          total: hits.length
          took: process.hrtime(start)[1] / 1000000
        }
      )
)

from graphql-relay-js.

grydstedt avatar grydstedt commented on May 7, 2024

I'm dealing with something similar. I've added custom fields to the connectionFields. This works great on the first retrieval, but when I refetch via setVariables (and increase number of items to fetch) these custom fields are not included in the request. I'd like to get a new rangeBegin and rangeEnd on each query here:

var PackagesRelay = Relay.createContainer(PackagesBase, {
  initialVariables: {
    first: PAGE_SIZE,
    filter: {}
  },
  fragments: {
    viewer: () => Relay.QL`
      fragment on Viewer {
        packages(first: $first, filter: $filter) {
          ${PackageListing.getFragment('packages')}
          totalCount
          rangeBegin
          rangeEnd
          pageInfo {
            hasNextPage
          }
        }
      }
    `
  }
});

from graphql-relay-js.

sibelius avatar sibelius commented on May 7, 2024

@grydstedt could u post an example of how u did totalCount?

from graphql-relay-js.

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.