Nicolas Bourdin
Explore posts from serversRRefine
•Created by xenophobic-harlequin on 2/26/2024 in #ask-any-question
Hasura dataprovider : How to query with _not operator ?
How can i query data with _not operator like this
query query {
event(where: {_not: {group_event: {event__id: {_is_null: false}}}}, limit: 10) {
id
group_event {
event__id
}
}
}
4 replies
RRefine
•Created by foreign-sapphire on 2/26/2024 in #ask-any-question
Filter nested fields
I use hasura dataprovider, and i wonder how to use nested filter in order to apply filter on nested field
My goal is to make the following graphql query (specially the user_activity_aggregate)
query event {
event {
user_activity_aggregate(where: { type: {_in: ["participate", "interested"]}}) {
aggregate { count }
}
}
}
13 replies
RRefine
•Created by genetic-orange on 1/16/2024 in #ask-any-question
Form: Transform data before submit
Is it possible to transform data before submit with a useForm + antd ?
9 replies
RRefine
•Created by causal-orange on 1/15/2024 in #ask-any-question
use graphql custom query in hasura data provider
Is is possible to use custom graphql query instead of meta.fields with hasura data provider ?
6 replies