Git Product home page Git Product logo

Comments (3)

twilly86 avatar twilly86 commented on August 24, 2024 1

I'm also trying to get gridjs to work with graphql

is it possible to get the data option available inside pagination so we can use a custom HTTP client for paging, sorting, searching etc?

ex) https://gridjs.io/docs/examples/custom-http-client

I'm looking for ways to get this to work with apollo client and graphql

from gridjs.

stale avatar stale commented on August 24, 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 gridjs.

benwoodward avatar benwoodward commented on August 24, 2024

Here's a working graphql config for anyone stuck with this. Caveat: you need to set up a graphql endpoint/query that receives first: Int!, offset: Int!, keyword: Int! for this to work, i.e. an endpoint that returns a paginated list of results that is filterable if a search term is provided. Using separate endpoints for search and pagination makes the problem 10x harder to solve.

    <Grid
      {columns}
      {className}
      sort
      search={{
        enabled: true,
        server: {
          body: (prevBody, keyword) => {
            return {
              keyword: keyword
            }
          }
        }
      }}
      pagination={{
        enabled: true,
        limit: 5,
        summary: true,
        server: {
          body: (prevBody, page, limit) => {
            return {
              ...prevBody,
              first: limit,
              offset: page * limit
            }
          }
        }
      }}
      server={{
        data: (opts) => {
          return new Promise((resolve, reject) => {
            let variables = {
              keyword: "",
              first: 10,
              offset: 0,
              ...opts.body
            }

            graphQLClient.request(paginatedFilterableSearch, variables)
              .then((res) => {
                resolve({
                  data: res.data.map(item => {
                    return [item.name, transcript.description, transcript.slug]
                  }),
                  total: res.data.total_count
                })
              })
              .catch((error) => {
                reject(error)
              })
          })
        }
      }}
    />

For reference, I'm using this with https://github.com/lynxtaa/awesome-graphql-client

from gridjs.

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.