-
-
Notifications
You must be signed in to change notification settings - Fork 242
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
parser for Graphql or Json data #44
Comments
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. |
Here's a working graphql config for anyone stuck with this. Caveat: you need to set up a graphql endpoint/query that receives <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 |
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 |
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Describe the solution you'd like
A clear and concise description of what you want to happen.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: